File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
src/main/java/scala/tools/asm Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 36
36
* @author Eric Bruneton
37
37
* @author Eugene Kuleshov
38
38
*/
39
- public final class MethodWriter extends MethodVisitor {
39
+ final class MethodWriter extends MethodVisitor {
40
40
41
41
/** Indicates that nothing must be computed. */
42
42
static final int COMPUTE_NOTHING = 0 ;
@@ -312,17 +312,9 @@ public final class MethodWriter extends MethodVisitor {
312
312
/** The max_stack field of the Code attribute. */
313
313
private int maxStack ;
314
314
315
- public int getMaxStack () {
316
- return maxStack ;
317
- }
318
-
319
315
/** The max_locals field of the Code attribute. */
320
316
private int maxLocals ;
321
317
322
- public int getMaxLocals () {
323
- return maxLocals ;
324
- }
325
-
326
318
/** The 'code' field of the Code attribute. */
327
319
private final ByteVector code = new ByteVector ();
328
320
You can’t perform that action at this time.
0 commit comments