Uploaded image for project: 'Wicket'
  1. Wicket
  2. WICKET-1626

Typo in src/main/java/org/apache/wicket/protocol/http/WebApplication.java

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Trivial
    • Resolution: Fixed
    • None
    • 1.3.4, 1.4-M2
    • None
    • None

    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 (<context-param>), 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);

      Attachments

        Activity

          People

            mrmean Maurice Marrink
            funkattack Martin Funk
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: