diff --git a/src/zutil/ui/Configurator.java b/src/zutil/ui/Configurator.java index 3d650d6..02431d3 100755 --- a/src/zutil/ui/Configurator.java +++ b/src/zutil/ui/Configurator.java @@ -171,10 +171,8 @@ public class Configurator { * been configured if it implements the PreConfigurationActionListener interface. * The postConfigurationAction() method will be called after the target object is * configured if it implements the PostConfigurationActionListener interface. - * - * @return a reference to itself so that metodcalls can be chained. */ - public Configurator applyConfiguration(){ + public void applyConfiguration(){ if(preListener != null) preListener.preConfigurationAction(this, obj); if(obj instanceof PreConfigurationActionListener) @@ -203,8 +201,6 @@ public class Configurator { ((PostConfigurationActionListener) obj).postConfigurationAction(this, obj); if(postListener != null) postListener.postConfigurationAction(this, obj); - - return this; }