Added clickable page numbers to lookup pagination

This commit is contained in:
Intelli 2022-02-08 19:25:07 -07:00
parent 673529df54
commit 19efdeff89
10 changed files with 103 additions and 9 deletions

View file

@ -181,7 +181,7 @@ public class ConfigFile extends Config {
for (int i = 0; i < lines.size(); i++) {
if (lines.get(i).equalsIgnoreCase(oldLine)) {
if (newLine.length() > 0) {
if (newLine != null && newLine.length() > 0) {
lines.set(i, newLine);
}
else {