File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
libs/javavi/src/main/java/kg/ash/javavi/searchers Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ public List<String> collectClassPath() {
37
37
String classPath = System .getProperty ("java.class.path" );
38
38
Stream .of (classPath .split (pSep ))
39
39
.filter (p -> p .length () >= 4 ).forEach (path -> {
40
+ if (path .contains ("vim-javacomplete2/libs/" )) {
41
+ return ;
42
+ }
40
43
String ext = path .substring (path .length () - 4 )
41
44
.toLowerCase ();
42
45
if (ext .endsWith (".jar" ) || ext .endsWith (".zip" )) {
@@ -50,7 +53,6 @@ public List<String> collectClassPath() {
50
53
}
51
54
52
55
private List <String > addPathFromDir (String dirpath ) {
53
- logger .info (dirpath );
54
56
List <String > result = new ArrayList <>();
55
57
File dir = new File (dirpath );
56
58
if (dir .isDirectory ()) {
You can’t perform that action at this time.
0 commit comments