[ 
https://issues.apache.org/jira/browse/WICKET-1626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Funk updated WICKET-1626:
--------------------------------

    Description: 
Index: src/main/java/org/apache/wicket/protocol/http/WebApplication.java
===================================================================
--- src/main/java/org/apache/wicket/protocol/http/WebApplication.java   
(revision 655812)
+++ src/main/java/org/apache/wicket/protocol/http/WebApplication.java   
(working copy)
@@ -167,7 +167,7 @@
        }
 
        /**
-        * Gets an init parameter from the filter's context.
+        * Gets an init parameter of the filter, or null if the parameter does 
not exist.
         * 
         * @param key
         *            the key to search for
@@ -179,9 +179,10 @@
                {
                        return 
wicketFilter.getFilterConfig().getInitParameter(key);
                }
-               throw new IllegalStateException("servletContext is not set yet. 
Any code in your"
-                       + " Application object that uses the 
wicketServlet/Filter instance should be put"
-                       + " in the init() method instead of your constructor");
+               throw new IllegalStateException("init parameter '" + key +
+                       "' is not set yet. Any code in your" +
+                       " Application object that uses the wicketServlet/Filter 
instance should be put" +
+                       " in the init() method instead of your constructor");
        }
 
        /**
@@ -202,7 +203,7 @@
 
        /**
         * Gets the servlet context for this application. Use this to get 
references to absolute paths,
-        * global web.xml parameters (<context-param>), etc.
+        * global web.xml parameters (&lt;context-param&gt;), etc.
         * 
         * @return The servlet context for this application
         */
@@ -555,7 +556,7 @@
                 * namespaced param. see WICKET-1317
                 */
 
-               // If no system parameter check filter/servert initparam and 
context param
+               // If no system parameter check filter/servlet <init-param> and 
<context-param>
                if (result == null)
                {
                        result = getInitParameter("wicket." + 
Application.CONFIGURATION);


  was:
Index: src/main/java/org/apache/wicket/protocol/http/WebApplication.java
===================================================================
--- src/main/java/org/apache/wicket/protocol/http/WebApplication.java   
(revision 655812)
+++ src/main/java/org/apache/wicket/protocol/http/WebApplication.java   
(working copy)
@@ -555,7 +555,7 @@
                 * namespaced param. see WICKET-1317
                 */
 
-               // If no system parameter check filter/servert initparam and 
context param
+               // If no system parameter check filter/servlet <init-param> and 
<context-param>
                if (result == null)
                {
                        result = getInitParameter("wicket." + 
Application.CONFIGURATION);



> Typo in src/main/java/org/apache/wicket/protocol/http/WebApplication.java
> -------------------------------------------------------------------------
>
>                 Key: WICKET-1626
>                 URL: https://issues.apache.org/jira/browse/WICKET-1626
>             Project: Wicket
>          Issue Type: Bug
>            Reporter: Martin Funk
>            Priority: Trivial
>
> Index: src/main/java/org/apache/wicket/protocol/http/WebApplication.java
> ===================================================================
> --- src/main/java/org/apache/wicket/protocol/http/WebApplication.java 
> (revision 655812)
> +++ src/main/java/org/apache/wicket/protocol/http/WebApplication.java 
> (working copy)
> @@ -167,7 +167,7 @@
>       }
>  
>       /**
> -      * Gets an init parameter from the filter's context.
> +      * Gets an init parameter of the filter, or null if the parameter does 
> not exist.
>        * 
>        * @param key
>        *            the key to search for
> @@ -179,9 +179,10 @@
>               {
>                       return 
> wicketFilter.getFilterConfig().getInitParameter(key);
>               }
> -             throw new IllegalStateException("servletContext is not set yet. 
> Any code in your"
> -                     + " Application object that uses the 
> wicketServlet/Filter instance should be put"
> -                     + " in the init() method instead of your constructor");
> +             throw new IllegalStateException("init parameter '" + key +
> +                     "' is not set yet. Any code in your" +
> +                     " Application object that uses the wicketServlet/Filter 
> instance should be put" +
> +                     " in the init() method instead of your constructor");
>       }
>  
>       /**
> @@ -202,7 +203,7 @@
>  
>       /**
>        * Gets the servlet context for this application. Use this to get 
> references to absolute paths,
> -      * global web.xml parameters (<context-param>), etc.
> +      * global web.xml parameters (&lt;context-param&gt;), etc.
>        * 
>        * @return The servlet context for this application
>        */
> @@ -555,7 +556,7 @@
>                * namespaced param. see WICKET-1317
>                */
>  
> -             // If no system parameter check filter/servert initparam and 
> context param
> +             // If no system parameter check filter/servlet <init-param> and 
> <context-param>
>               if (result == null)
>               {
>                       result = getInitParameter("wicket." + 
> Application.CONFIGURATION);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to