File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
liquidjava-verifier/src/main/java/liquidjava/diagnostics Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,10 @@ public class Diagnostics {
1515
1616 private final LinkedHashSet <LJError > errors ;
1717 private final LinkedHashSet <LJWarning > warnings ;
18- private boolean debugMode ;
1918
2019 private Diagnostics () {
2120 this .errors = new LinkedHashSet <>();
2221 this .warnings = new LinkedHashSet <>();
23- this .debugMode = false ;
2422 }
2523
2624 public static Diagnostics getInstance () {
@@ -35,14 +33,6 @@ public void add(LJWarning warning) {
3533 this .warnings .add (warning );
3634 }
3735
38- public boolean isDebugMode () {
39- return this .debugMode ;
40- }
41-
42- public void setDebugMode () {
43- this .debugMode = true ;
44- }
45-
4636 public boolean foundError () {
4737 return !this .errors .isEmpty ();
4838 }
You can’t perform that action at this time.
0 commit comments