Skip to content

Commit 2160fbc

Browse files
committed
Neg this
1 parent a3d040c commit 2160fbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/codehaus/plexus/components/secdispatcher/internal/sources/FileMasterSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private String readFile(String transformed) throws SecDispatcherException {
9898
if (file.isAbsolute() && Files.exists(file)) {
9999
try {
100100
return Files.readAllLines(file).stream()
101-
.filter(l -> l.startsWith("#"))
101+
.filter(l -> !l.startsWith("#"))
102102
.map(String::trim)
103103
.findFirst()
104104
.orElse(null);

0 commit comments

Comments
 (0)