This is an automated email from the ASF dual-hosted git repository.

svenmeier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
     new 33c05c4  WICKET-6147 removed private leftovers
33c05c4 is described below

commit 33c05c4e19bd9576c9584e3b1bd4129c7fbd46b3
Author: Sven Meier <svenme...@apache.org>
AuthorDate: Fri Feb 22 07:49:02 2019 +0100

    WICKET-6147 removed private leftovers
---
 .../src/main/java/org/apache/wicket/Application.java  | 19 -------------------
 1 file changed, 19 deletions(-)

diff --git a/wicket-core/src/main/java/org/apache/wicket/Application.java 
b/wicket-core/src/main/java/org/apache/wicket/Application.java
index c97c582..fec2343 100644
--- a/wicket-core/src/main/java/org/apache/wicket/Application.java
+++ b/wicket-core/src/main/java/org/apache/wicket/Application.java
@@ -20,7 +20,6 @@ import java.net.URLConnection;
 import java.util.Collections;
 import java.util.List;
 import java.util.Map;
-import java.util.Properties;
 import java.util.ServiceLoader;
 import java.util.Set;
 import java.util.function.Supplier;
@@ -93,7 +92,6 @@ import org.apache.wicket.settings.RequestLoggerSettings;
 import org.apache.wicket.settings.ResourceSettings;
 import org.apache.wicket.settings.SecuritySettings;
 import org.apache.wicket.settings.StoreSettings;
-import org.apache.wicket.util.file.File;
 import org.apache.wicket.util.lang.Args;
 import org.apache.wicket.util.lang.Generics;
 import org.apache.wicket.util.time.Duration;
@@ -154,13 +152,6 @@ public abstract class Application implements 
UnboundListener, IEventSink, IMetad
        /** Log. */
        private static final Logger log = 
LoggerFactory.getLogger(Application.class);
 
-       private static final String PROPERTIES_FILE_EXTENSION = ".properties";
-
-       /**
-        * The path to look for Wicket specific properties file(s)
-        */
-       private static final String META_INF_WICKET_PATH = File.separatorChar+ 
"META-INF" + File.separatorChar + "wicket" + File.separatorChar;
-
        /** root mapper */
        private IRequestMapper rootRequestMapper;
 
@@ -575,16 +566,6 @@ public abstract class Application implements 
UnboundListener, IEventSink, IMetad
        }
 
        /**
-        * @param properties
-        *            Properties map with names of any library initializers in 
it
-        */
-       private void load(final Properties properties)
-       {
-               addInitializer(properties.getProperty("initializer"));
-               addInitializer(properties.getProperty(getName() + 
"-initializer"));
-       }
-
-       /**
         * Called when wicket servlet is destroyed. Overrides do not have to 
call super.
         */
        protected void onDestroy()

Reply via email to