X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Fcommands%2FSCLConsoleListener.java;h=f07dfc58eed22de8725ce82d8ddd0e291b6e127f;hb=08a43c849e0bed256394e3861326af9ce26a9917;hp=e5cc305840892ffb1b2b85250fa463c5f27d2694;hpb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;p=simantics%2Fplatform.git 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() {} }