Skip to content

Commit

Permalink
Neg this
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Dec 9, 2024
1 parent a3d040c commit 2160fbc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private String readFile(String transformed) throws SecDispatcherException {
if (file.isAbsolute() && Files.exists(file)) {
try {
return Files.readAllLines(file).stream()
.filter(l -> l.startsWith("#"))
.filter(l -> !l.startsWith("#"))
.map(String::trim)
.findFirst()
.orElse(null);
Expand Down

0 comments on commit 2160fbc

Please sign in to comment.