classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch


From: Chris Dailey
Subject: Patch
Date: Tue, 22 Jul 2003 03:16:03 -0600 (MDT)

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.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]