aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/jcf-parse.c
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2004-12-08 14:01:50 +0000
committerAndrew Haley <aph@gcc.gnu.org>2004-12-08 14:01:50 +0000
commit477c6c35b5be120373ccfb6a6a81c0d288fd2d8f (patch)
treeb708c60022df2d3e4e47ff0c757ad241e6a27753 /gcc/java/jcf-parse.c
parent59ce85b543446f3df435a09f5212bdcf1ea8128b (diff)
downloadgcc-477c6c35b5be120373ccfb6a6a81c0d288fd2d8f.zip
gcc-477c6c35b5be120373ccfb6a6a81c0d288fd2d8f.tar.gz
gcc-477c6c35b5be120373ccfb6a6a81c0d288fd2d8f.tar.bz2
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
Diffstat (limited to 'gcc/java/jcf-parse.c')
-rw-r--r--gcc/java/jcf-parse.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c
index 8171522..b6732a1 100644
--- a/gcc/java/jcf-parse.c
+++ b/gcc/java/jcf-parse.c
@@ -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