File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/java/org/apache/bcel/verifier Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ public final class Pass3aVerifier extends PassVerifier {
113
113
/**
114
114
* This visitor class does the actual checking for the instruction operand's constraints.
115
115
*/
116
- private class InstOperandConstraintVisitor extends org .apache .bcel .generic .EmptyVisitor {
116
+ private final class InstOperandConstraintVisitor extends org .apache .bcel .generic .EmptyVisitor {
117
117
/** The ConstantPoolGen instance this Visitor operates on. */
118
118
private final ConstantPoolGen constantPoolGen ;
119
119
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public class ControlFlowGraph {
43
43
/**
44
44
* Objects of this class represent a node in a ControlFlowGraph. These nodes are instructions, not basic blocks.
45
45
*/
46
- private class InstructionContextImpl implements InstructionContext {
46
+ private final class InstructionContextImpl implements InstructionContext {
47
47
48
48
/**
49
49
* The TAG field is here for external temporary flagging, such as graph coloring.
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ private enum ColourConstants {
64
64
/**
65
65
* This inner class implements the Subroutine interface.
66
66
*/
67
- private class SubroutineImpl implements Subroutine {
67
+ private final class SubroutineImpl implements Subroutine {
68
68
/**
69
69
* UNSET, a symbol for an uninitialized localVariable field. This is used for the "top-level" Subroutine; i.e. no
70
70
* subroutine.
You can’t perform that action at this time.
0 commit comments