Skip to content

Commit 9f6c8d7

Browse files
committed
Fix Symbol/Type provider issues
1 parent 09213d7 commit 9f6c8d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/netbeans/modules/python/indexing/PythonCustomIndexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ protected void index(Iterable<? extends Indexable> files, Context context) {
8888
long endTime = System.currentTimeMillis();
8989
if (LOG.isLoggable(Level.INFO)) {
9090
LOG.log(Level.INFO, "Processed {0} files for {1} in {2}ms.", new Object[]{
91-
cnt, cnt > 0 ? root.getPath() : "null", endTime - startTime});
91+
cnt, root != null ? root.getPath() : "null", endTime - startTime});
9292
}
9393
}
9494

0 commit comments

Comments
 (0)