This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[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())


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]