Skip to content

Commit a445073

Browse files
committed
WIP
1 parent a6f72d5 commit a445073

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/main/java/act/boot/BootstrapClassLoader.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,10 @@ public Set<String> scanList() {
141141
while (systemResources.hasMoreElements()) {
142142
InputStream is = systemResources.nextElement().openStream();
143143
String s = IO.readContentAsString(is);
144-
scanList.addAll(C.listOf(s.split("[\r\n]+")).filter(S.F.startsWith("#").negate()));
144+
scanList.addAll(
145+
C.listOf(s.split("[\r\n]+"))
146+
.filter(S.F.startsWith("#").negate())
147+
.filter(S.F.IS_BLANK.negate()));
145148
}
146149
} catch (IOException e) {
147150
throw E.ioException(e);

0 commit comments

Comments
 (0)