rt/vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeParser.java
branchjdk8
changeset 1657 c90c5a9b1900
parent 1642 c178e0bdce5d
child 1793 64fa3f15cb49
     1.1 --- a/rt/vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeParser.java	Wed Jul 16 07:57:22 2014 +0200
     1.2 +++ b/rt/vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeParser.java	Sun Aug 10 08:57:22 2014 +0200
     1.3 @@ -1231,8 +1231,8 @@
     1.4              }
     1.5          }
     1.6          
     1.7 -        public String getBootMethod(int indx) {
     1.8 -            return bootMethods != null ? bootMethods[indx].toString() : null;
     1.9 +        public BootMethodData getBootMethod(int indx) {
    1.10 +            return bootMethods != null ? bootMethods[indx] : null;
    1.11          }
    1.12  
    1.13          /**
    1.14 @@ -1593,9 +1593,9 @@
    1.15          }
    1.16      } // end InnerClassData
    1.17      
    1.18 -    private static class BootMethodData {
    1.19 +    static class BootMethodData {
    1.20          private final ClassData clazz;
    1.21 -        private final int method;
    1.22 +        final int method;
    1.23          private final int[] args;
    1.24  
    1.25          private BootMethodData(ClassData clazz, int method, int[] args) {