This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[BC] Add RawDataManaged to Debug.print()
- From: Andrew Haley <aph at redhat dot com>
- To: java-patches at gcc dot gnu dot org
- Date: Tue, 16 Nov 2004 14:04:13 +0000
- Subject: [BC] Add RawDataManaged to Debug.print()
Obvious, committed.
Andrew.
2004-11-16 Andrew Haley <aph@redhat.com>
* gnu/gcj/util/Debug.java (print): Add RawDataManaged.
Index: gnu/gcj/util/Debug.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/gcj/util/Attic/Debug.java,v
retrieving revision 1.1.2.2
diff -u -r1.1.2.2 Debug.java
--- gnu/gcj/util/Debug.java 5 Oct 2004 21:48:13 -0000 1.1.2.2
+++ gnu/gcj/util/Debug.java 16 Nov 2004 14:00:44 -0000
@@ -183,7 +183,8 @@
p.print("null");
return;
}
- else if (C == gnu.gcj.RawData.class)
+ else if (C == gnu.gcj.RawData.class ||
+ C == gnu.gcj.RawDataManaged.class)
{
}
else if (C.isPrimitive())