We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3d040c commit 2160fbcCopy full SHA for 2160fbc
src/main/java/org/codehaus/plexus/components/secdispatcher/internal/sources/FileMasterSource.java
@@ -98,7 +98,7 @@ private String readFile(String transformed) throws SecDispatcherException {
98
if (file.isAbsolute() && Files.exists(file)) {
99
try {
100
return Files.readAllLines(file).stream()
101
- .filter(l -> l.startsWith("#"))
+ .filter(l -> !l.startsWith("#"))
102
.map(String::trim)
103
.findFirst()
104
.orElse(null);
0 commit comments