From 316236278a68456fe7496e24ad7e67bc20800876 Mon Sep 17 00:00:00 2001 From: Mike Kucera Date: Thu, 7 May 2009 20:23:29 +0000 Subject: [PATCH] [275373] [Standalone Indexer] NoClassDefFoundError when indexing --- .../internal/core/indexer/StandaloneIndexerInputAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/StandaloneIndexerInputAdapter.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/StandaloneIndexerInputAdapter.java index 0a5ae5cba7d..b80d8668208 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/StandaloneIndexerInputAdapter.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/indexer/StandaloneIndexerInputAdapter.java @@ -78,7 +78,7 @@ public class StandaloneIndexerInputAdapter extends IndexerInputAdapter { // use the original } //Standalone indexing stores the absolute paths of files being indexed - result = new IndexFileLocation(URIUtil.toURI(astPath),astPath); + result = new IndexFileLocation(URIUtil.toURI(astPath), null); fIflCache.put(astPath, result); } return result;