The following patch is an attempt to fix this difference:

http://japi.sab39.org/htmlout/h-jdk11-classpath.html#err_bad_java_lang

Bad

* field java.lang.reflect.Member.DECLARED: constant [1] in jdk11,
  but not constant in classpath
* field java.lang.reflect.Member.PUBLIC: constant [0] in jdk11, but
  not constant in classpath


Index: Member.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/lang/reflect/Member.java,v
retrieving revision 1.6
diff -r1.6 Member.java
65c65
<   int DECLARED = 1;
---
>   final int DECLARED = 1;
73c73
<   int PUBLIC = 0;
---
>   final int PUBLIC = 0;

--
If things were different, then things would be different.


_______________________________________________
Classpath mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/classpath

Reply via email to