[kaffe] CVS kaffe (robilad): resynced with gnu classpath: corba fix
Kaffe CVS
cvs-commits at kaffe.org
Wed May 18 15:00:48 PDT 2005
PatchSet 6548
Date: 2005/05/18 21:55:36
Author: robilad
Branch: HEAD
Tag: (none)
Log:
resynced with gnu classpath: corba fix
2005-05-18 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
2005-05-16 Audrius Meskauskas, <AudriusA at Bioinformatics.org>
* org/omg/CORBA/PRIVATE_MEMBER.java,
org/omg/CORBA/PUBLIC_MEMBER.java
(value): Changing the type from int to short.
Members:
ChangeLog:1.4074->1.4075
libraries/javalib/org/omg/CORBA/PRIVATE_MEMBER.java:1.1->1.2
libraries/javalib/org/omg/CORBA/PUBLIC_MEMBER.java:1.1->1.2
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4074 kaffe/ChangeLog:1.4075
--- kaffe/ChangeLog:1.4074 Wed May 18 21:42:39 2005
+++ kaffe/ChangeLog Wed May 18 21:55:36 2005
@@ -2,6 +2,16 @@
Resynced with GNU Classpath.
+ 2005-05-16 Audrius Meskauskas, <AudriusA at Bioinformatics.org>
+
+ * org/omg/CORBA/PRIVATE_MEMBER.java,
+ org/omg/CORBA/PUBLIC_MEMBER.java
+ (value): Changing the type from int to short.
+
+2005-05-18 Dalibor Topic <robilad at kaffe.org>
+
+ Resynced with GNU Classpath.
+
2005-05-16 Ziga Mahkovec <ziga.mahkovec at klika.si>
PR libgcj/20504
Index: kaffe/libraries/javalib/org/omg/CORBA/PRIVATE_MEMBER.java
diff -u kaffe/libraries/javalib/org/omg/CORBA/PRIVATE_MEMBER.java:1.1 kaffe/libraries/javalib/org/omg/CORBA/PRIVATE_MEMBER.java:1.2
--- kaffe/libraries/javalib/org/omg/CORBA/PRIVATE_MEMBER.java:1.1 Sun Apr 17 21:50:58 2005
+++ kaffe/libraries/javalib/org/omg/CORBA/PRIVATE_MEMBER.java Wed May 18 21:55:39 2005
@@ -1,4 +1,4 @@
-/* PRIVATE_MEMBER.java --
+/* PRIVATE_MEMBER.java --
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -39,11 +39,11 @@
/**
* One of the two constants, defining the visibility scope of
- * the {@link ValueMember}. The other constant is
+ * the {@link ValueMember}. The other constant is
* {@link PUBLIC_MEMBER}.
- *
+ *
* @author Audrius Meskauskas (AudriusA at Bioinformatics.org)
- *
+ *
* @see ValueMember#access
*/
public interface PRIVATE_MEMBER
@@ -51,5 +51,5 @@
/**
* The flag, specifying that the value member is private.
*/
- int value = 0;
+ short value = 0;
}
Index: kaffe/libraries/javalib/org/omg/CORBA/PUBLIC_MEMBER.java
diff -u kaffe/libraries/javalib/org/omg/CORBA/PUBLIC_MEMBER.java:1.1 kaffe/libraries/javalib/org/omg/CORBA/PUBLIC_MEMBER.java:1.2
--- kaffe/libraries/javalib/org/omg/CORBA/PUBLIC_MEMBER.java:1.1 Sun Apr 17 21:50:58 2005
+++ kaffe/libraries/javalib/org/omg/CORBA/PUBLIC_MEMBER.java Wed May 18 21:55:39 2005
@@ -1,4 +1,4 @@
-/* PUBLIC_MEMBER.java --
+/* PUBLIC_MEMBER.java --
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -39,11 +39,11 @@
/**
* One of the two constants, defining the visibility scope of
- * the {@link ValueMember}. The other constant is
+ * the {@link ValueMember}. The other constant is
* {@link PRIVATE_MEMBER}.
- *
+ *
* @author Audrius Meskauskas (AudriusA at Bioinformatics.org)
- *
+ *
* @see ValueMember#access
*/
public interface PUBLIC_MEMBER
@@ -51,5 +51,5 @@
/**
* The flag, specifying that the value member is public.
*/
- int value = 1;
+ short value = 1;
}
More information about the kaffe
mailing list