diff -r ee28a84dade2 csl.api/src/org/netbeans/modules/csl/core/PathRecognizerImpl.java --- a/csl.api/src/org/netbeans/modules/csl/core/PathRecognizerImpl.java Fri May 22 15:38:26 2009 +0200 +++ b/csl.api/src/org/netbeans/modules/csl/core/PathRecognizerImpl.java Fri May 22 19:11:06 2009 +0200 @@ -60,7 +60,7 @@ @Override public Set getSourcePathIds() { - if (sourcePathIds == null) { + if (/*sourcePathIds == null*/true) { collectInfo(); } Set spids = sourcePathIds; @@ -154,10 +154,10 @@ } synchronized (this) { - if (sourcePathIds == null) { - assert libraryPathIds == null; - assert binaryLibraryPathIds == null; - assert mimeTypes == null; + if (/*sourcePathIds == null*/true) { + //assert libraryPathIds == null; + //assert binaryLibraryPathIds == null; + //assert mimeTypes == null; sourcePathIds = Collections.unmodifiableSet(collectedSpids); libraryPathIds = Collections.unmodifiableSet(collectedLpids); diff -r ee28a84dade2 parsing.api/src/org/netbeans/modules/parsing/impl/indexing/PathRecognizerRegistry.java --- a/parsing.api/src/org/netbeans/modules/parsing/impl/indexing/PathRecognizerRegistry.java Fri May 22 15:38:26 2009 +0200 +++ b/parsing.api/src/org/netbeans/modules/parsing/impl/indexing/PathRecognizerRegistry.java Fri May 22 19:11:06 2009 +0200 @@ -113,7 +113,7 @@ } private synchronized Object [] getData () { - if (cachedData == null) { + if (/*cachedData == null*/true) { Set sourceIds = new HashSet(); Set libraryIds = new HashSet(); Set binaryLibraryIds = new HashSet();