Added clarifying documentation to filter algorithm.

This commit is contained in:
Aust1n46 2021-02-08 18:00:58 -06:00
parent 53b6e0b0c7
commit 6ef38eac55

View File

@ -625,6 +625,7 @@ public class Format {
pparse[t++] = st.nextToken();
}
}
// (?i) = case insensitive
msg = msg.replaceAll("(?i)" + pparse[0], pparse[1]);
}
return msg;