We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0148c4 commit 83e4559Copy full SHA for 83e4559
src/main/java/org/maxgamer/quickshop/localization/text/postprocessing/impl/FillerProcessor.java
@@ -34,8 +34,8 @@ public class FillerProcessor implements PostProcessor {
34
boolean hit = false;
35
for (int i = 0; i < args.length; i++) {
36
37
- if (args[i].getClass() == String.class) {
38
- strings[i] = String.valueOf(args[i]);
+ if (args[i] instanceof String) {
+ strings[i] = (String) args[i];
39
continue;
40
}
41
0 commit comments