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
This commit is contained in:
Andrew Haley 2004-12-08 14:01:50 +00:00 committed by Andrew Haley
parent 59ce85b543
commit 477c6c35b5
2 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,8 @@
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>
* Make-lang.in (JAVA_MANFILES): Added gcj-dbtool.

View File

@ -682,12 +682,6 @@ load_class (tree class_or_name, int verbose)
*separator = '\0';
name = get_identifier (IDENTIFIER_POINTER (name));
*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. */
else