Skip to content

Commit 2accb3f

Browse files
committed
Forgot to return visitor result
1 parent fb9399b commit 2accb3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/com.google.cloud.tools.eclipse.integration.appengine/src/com/google/cloud/tools/eclipse/integration/appengine/DebugNativeAppEngineStandardProjectTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public void run() {
132132
@Override
133133
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
134134
System.out.println(">> " + file.relativize(deployDir));
135-
return null;
135+
return FileVisitResult.CONTINUE;
136136
}
137137
});
138138

0 commit comments

Comments
 (0)