mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-11-18 00:46:55 +01:00
Undo renaming of boolean
This commit is contained in:
parent
4e8b1b47d1
commit
41275509b2
@ -99,7 +99,7 @@ public final class CharsReplacer implements Replacer {
|
||||
}
|
||||
|
||||
boolean identified = false;
|
||||
boolean invalid = true;
|
||||
boolean oopsitsbad = true;
|
||||
boolean hadSpace = false;
|
||||
|
||||
while (++i < chars.length) {
|
||||
@ -110,7 +110,7 @@ public final class CharsReplacer implements Replacer {
|
||||
break;
|
||||
}
|
||||
if (p == closure.tail) {
|
||||
invalid = false;
|
||||
oopsitsbad = false;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -132,7 +132,7 @@ public final class CharsReplacer implements Replacer {
|
||||
identifier.setLength(0);
|
||||
parameters.setLength(0);
|
||||
|
||||
if (invalid) {
|
||||
if (oopsitsbad) {
|
||||
builder.append(closure.head).append(identifierString);
|
||||
|
||||
if (identified) {
|
||||
|
Loading…
Reference in New Issue
Block a user