Skip to content

Commit 70a9fc1

Browse files
committed
Fix lib directory class resolution in nextflow CLI
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
1 parent eac8e61 commit 70a9fc1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

modules/compiler/src/main/java/script/control/ResolveVisitor.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,6 @@ protected boolean resolveFromDefaultImports(ClassNode type, String[] packagePref
247247
}
248248

249249
protected ClassNode resolveFromClassResolver(String name) {
250-
if( !name.contains(".") )
251-
return null;
252250
var lookupResult = classNodeResolver.resolveName(name, compilationUnit);
253251
if( lookupResult == null )
254252
return null;

0 commit comments

Comments
 (0)