Skip to content

Commit 11cb60d

Browse files
fix(core): 修改simpleHttpServer (#675)
1 parent ad5241c commit 11cb60d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/tlcsdm/core/util/GroovyUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,6 @@ public static void simpleHttpServer(int port, String contextRoot, String docBase
142142
}
143143
Map<String, Object> map = new HashMap<>(4);
144144
map.put("args", new String[]{String.valueOf(port), contextRoot, docBase});
145-
System.out.println(GroovyUtil.run("SimpleHttpServer.groovy", map));
145+
GroovyUtil.run("SimpleHttpServer.groovy", map);
146146
}
147147
}

0 commit comments

Comments
 (0)