Skip to content

Commit f83fe79

Browse files
committed
Do not use System libraries in scope
Signed-off-by: Juan Manuel Leflet Estrada <[email protected]>
1 parent 2a79d30 commit f83fe79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java-analyzer-bundle.core/src/main/java/io/konveyor/tackle/core/internal/SampleDelegateCommandHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ private static List<SymbolInformation> search(String projectName, ArrayList<Stri
203203
logInfo("Searching in target project: " + targetProjects);
204204

205205
// For Partial results, we are going to filter out based on a list in the engine
206-
int s = IJavaSearchScope.SOURCES | IJavaSearchScope.REFERENCED_PROJECTS | IJavaSearchScope.APPLICATION_LIBRARIES | IJavaSearchScope.SYSTEM_LIBRARIES;
206+
int s = IJavaSearchScope.SOURCES | IJavaSearchScope.REFERENCED_PROJECTS | IJavaSearchScope.APPLICATION_LIBRARIES;
207207
if (analysisMode.equals(sourceOnlyAnalysisMode)) {
208208
logInfo("KONVEYOR_LOG: source-only analysis mode only scoping to Sources");
209209
s = IJavaSearchScope.SOURCES;

0 commit comments

Comments
 (0)