Commit 477c6c35 by Andrew Haley Committed by Andrew Haley

jcf-parse.c (load_class): Remove sanity test for missing inner class file.

2004-12-07  Andrew Haley  <aph@redhat.com>

	* jcf-parse.c (load_class): Remove sanity test for missing inner
	class file.

From-SVN: r91900
parent 59ce85b5
2004-12-07 Andrew Haley <aph@redhat.com>
* jcf-parse.c (load_class): Remove sanity test for missing inner
class file.
2004-12-06 Tom Tromey <tromey@redhat.com> 2004-12-06 Tom Tromey <tromey@redhat.com>
* Make-lang.in (JAVA_MANFILES): Added gcj-dbtool. * Make-lang.in (JAVA_MANFILES): Added gcj-dbtool.
......
...@@ -682,12 +682,6 @@ load_class (tree class_or_name, int verbose) ...@@ -682,12 +682,6 @@ load_class (tree class_or_name, int verbose)
*separator = '\0'; *separator = '\0';
name = get_identifier (IDENTIFIER_POINTER (name)); name = get_identifier (IDENTIFIER_POINTER (name));
*separator = c; *separator = c;
/* Otherwise we might get infinite recursion, if say we
have String.class but not
String$CaseInsensitiveComparator.class. */
if (current_jcf && current_jcf->java_source == 0)
break;
} }
/* Otherwise, we failed, we bail. */ /* Otherwise, we failed, we bail. */
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment