X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Fcommands%2FSCLConsoleListener.java;h=f07dfc58eed22de8725ce82d8ddd0e291b6e127f;hp=e5cc305840892ffb1b2b85250fa463c5f27d2694;hb=dbe0a77f0869111219b69d412d0bb90d17c391c1;hpb=0ae2b770234dfc3cbb18bd38f324125cf0faca07 diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/SCLConsoleListener.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/SCLConsoleListener.java index e5cc30584..f07dfc58e 100644 --- a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/SCLConsoleListener.java +++ b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/commands/SCLConsoleListener.java @@ -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() {} }