We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6f72d5 commit a445073Copy full SHA for a445073
1 file changed
src/main/java/act/boot/BootstrapClassLoader.java
@@ -141,7 +141,10 @@ public Set<String> scanList() {
141
while (systemResources.hasMoreElements()) {
142
InputStream is = systemResources.nextElement().openStream();
143
String s = IO.readContentAsString(is);
144
- scanList.addAll(C.listOf(s.split("[\r\n]+")).filter(S.F.startsWith("#").negate()));
+ scanList.addAll(
145
+ C.listOf(s.split("[\r\n]+"))
146
+ .filter(S.F.startsWith("#").negate())
147
+ .filter(S.F.IS_BLANK.negate()));
148
}
149
} catch (IOException e) {
150
throw E.ioException(e);
0 commit comments