You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2016/01/28 09:43:52 UTC

[3/3] isis git commit: ISIS-1300: rename of private method.

ISIS-1300: rename of private method.


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/a195f62f
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/a195f62f
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/a195f62f

Branch: refs/heads/master
Commit: a195f62f32edeee52a3a15b4670be92ce6b40bc9
Parents: dbfa9e2
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Thu Jan 28 08:42:56 2016 +0000
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Thu Jan 28 08:42:56 2016 +0000

----------------------------------------------------------------------
 .../apache/isis/viewer/wicket/viewer/IsisWicketApplication.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/a195f62f/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/IsisWicketApplication.java
----------------------------------------------------------------------
diff --git a/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/IsisWicketApplication.java b/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/IsisWicketApplication.java
index fb0cc96..9f712c6 100644
--- a/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/IsisWicketApplication.java
+++ b/core/viewer-wicket-impl/src/main/java/org/apache/isis/viewer/wicket/viewer/IsisWicketApplication.java
@@ -324,7 +324,7 @@ public class IsisWicketApplication
     }
 
     protected void configureWicketSourcePluginIfNecessary(final IsisConfiguration configuration) {
-        if(isEnabledWicketSourcePluginEnabled(configuration)) {
+        if(isWicketSourcePluginEnabled(configuration)) {
             configureWicketSourcePlugin();
         }
     }
@@ -668,7 +668,7 @@ public class IsisWicketApplication
      * <p>
      * If the <tt>isis.viewer.wicket.wicketSourcePlugin</tt> is set, then this is used, otherwise the default is to disable.
      */
-    private boolean isEnabledWicketSourcePluginEnabled(IsisConfiguration configuration) {
+    private boolean isWicketSourcePluginEnabled(IsisConfiguration configuration) {
         final boolean pluginEnabled = configuration.getBoolean(WICKET_SOURCE_PLUGIN_KEY, WICKET_SOURCE_PLUGIN_DEFAULT);
         return pluginEnabled;
     }