### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: search/org/eclipse/jdt/internal/core/search/indexing/BinaryIndexer.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/indexing/BinaryIndexer.java,v retrieving revision 1.59 diff -u -r1.59 BinaryIndexer.java --- search/org/eclipse/jdt/internal/core/search/indexing/BinaryIndexer.java 19 Apr 2007 14:58:04 -0000 1.59 +++ search/org/eclipse/jdt/internal/core/search/indexing/BinaryIndexer.java 26 Apr 2007 14:56:47 -0000 @@ -744,14 +744,14 @@ } } } - // record all references found inside the .class file extractReferenceFromConstantPool(contents, reader); } catch (ClassFormatException e) { // ignore } catch (RuntimeException e) { - Util.log(e, "Indexer crashed on document " + this.document.getPath()); //$NON-NLS-1$ - throw e; + // https://bugs.eclipse.org/bugs/show_bug.cgi?id=182154 + // logging the entry that could not be indexed and continue with the next one + Util.log(e, "Indexer crashed on document " + this.document.getPath() + ". Please report this issue to JDT/Core including the problematic document"); //$NON-NLS-1$ //$NON-NLS-2$ } } /*