Ref: add new static analyser rule: category/java/bestpractices.xml/LiteralsFirstInComparisons
This commit is contained in:
@@ -236,7 +236,7 @@ public class GuiTextOneLine implements Gui {
|
||||
.append(String.join("", Collections.nCopies(10 - (int) (progress / 10), " ")))
|
||||
.append(']');
|
||||
|
||||
if (!this.eta.equals("")) {
|
||||
if ("".equals(this.eta) == false) {
|
||||
progressBar.append(String.format(" ETA %s", this.eta));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user