Skip to content

Commit

Permalink
[NETBEANS-6970] Disabling the multi source handling by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
lahodaj committed Jan 22, 2024
1 parent 2100f39 commit f94483f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
})
public class MultiSourceRootProvider implements ClassPathProvider {

public static boolean DISABLE_MULTI_SOURCE_ROOT = false;
public static boolean DISABLE_MULTI_SOURCE_ROOT = Boolean.getBoolean("java.disable.multi.source.root");

//TODO: the cache will probably be never cleared, as the ClassPath/value refers to the key(?)
private Map<FileObject, ClassPath> file2SourceCP = new WeakHashMap<>();
Expand Down

0 comments on commit f94483f

Please sign in to comment.