Skip to content

Commit 6c37dad

Browse files
committed
lines starting with #
1 parent 64dc25e commit 6c37dad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/uno/anahata/ai/gemini/GeminiAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private void loadApiKeys() {
6969
try {
7070
keys = Files.lines(keysFilePath)
7171
.map(String::trim)
72-
.filter(line -> !line.isEmpty() && !line.startsWith("//"))
72+
.filter(line -> !line.isEmpty() && !line.startsWith("//") && !line.startsWith("#"))
7373
.map(line -> {
7474
int commentIndex = line.indexOf("//");
7575
return (commentIndex != -1) ? line.substring(0, commentIndex).trim() : line;

0 commit comments

Comments
 (0)