]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/SCLConsoleListener.java
Fixed SCL Console Clear Console active-state when imports are erroneous
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / commands / SCLConsoleListener.java
index e5cc305840892ffb1b2b85250fa463c5f27d2694..f07dfc58eed22de8725ce82d8ddd0e291b6e127f 100644 (file)
@@ -1,7 +1,7 @@
 package org.simantics.scl.compiler.commands;
 
 public interface SCLConsoleListener {
-    void startedExecution();
-    void finishedExecution();
-    void consoleIsNotEmptyAnymore();
+    default void startedExecution() {}
+    default void finishedExecution() {}
+    default void consoleIsNotEmptyAnymore() {}
 }