This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Patch: PR 152
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: PR 152
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 17 Feb 2000 11:35:11 -0700
- Reply-To: tromey at cygnus dot com
This patch fixes PR 152.
2000-02-17 Tom Tromey <tromey@cygnus.com>
* gcj/field.h (_Jv_Field::getClass): Don't use JvAssert.
Fixes PR gcj/152.
Tom
Index: gcj/field.h
===================================================================
RCS file: /cvs/java/libgcj/libjava/gcj/field.h,v
retrieving revision 1.4
diff -u -r1.4 field.h
--- field.h 2000/01/26 00:55:49 1.4
+++ field.h 2000/02/17 18:18:39
@@ -68,7 +68,9 @@
jclass getClass ()
{
- JvAssert (isResolved ());
+ // We can't use JvAssert here because it is not in a public
+ // header.
+ // JvAssert (isResolved ());
return type;
}