The getPrimitiveClass method is called from many places emul
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 30 Sep 2012 17:39:50 -0700
branchemul
changeset 805856cc62bfa7
parent 79 a6ac0a32d3ea
child 82 e8ffc304d302
The getPrimitiveClass method is called from many places
emul/src/main/java/java/lang/Class.java
     1.1 --- a/emul/src/main/java/java/lang/Class.java	Sun Sep 30 17:29:51 2012 -0700
     1.2 +++ b/emul/src/main/java/java/lang/Class.java	Sun Sep 30 17:39:50 2012 -0700
     1.3 @@ -709,4 +709,7 @@
     1.4          throw new UnsupportedOperationException();
     1.5      }
     1.6  
     1.7 +    static Class<?> getPrimitiveClass(String type) {
     1.8 +        throw new UnsupportedOperationException();
     1.9 +    }
    1.10  }