Changeset 2734


Ignore:
Timestamp:
03/23/13 21:37:27 (11 years ago)
Author:
oschonef
Message:
  • fix some typos
Location:
SRUServer/trunk/src/main/java/eu/clarin/sru/server
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • SRUServer/trunk/src/main/java/eu/clarin/sru/server/SRURequest.java

    r2680 r2734  
    249249
    250250    /**
    251      * Get the raw client request information from the servlet container.
    252      *
    253      * @return the servlet request
     251     * Get the raw client request information from the Servlet container.
     252     *
     253     * @return the Servlet request
    254254     */
    255255    public HttpServletRequest getServletRequest();
  • SRUServer/trunk/src/main/java/eu/clarin/sru/server/SRUServer.java

    r2698 r2734  
    187187            } else {
    188188                /*
    189                  * The servlet already flushed the output buffer, so cannot
     189                 * The Servlet already flushed the output buffer, so cannot
    190190                 * degrade gracefully anymore and, unfortunately, will produce
    191191                 * ill-formed XML output.
  • SRUServer/trunk/src/main/java/eu/clarin/sru/server/SRUServerConfig.java

    r2700 r2734  
    6868 * }
    6969 *
    70  * // other runtime configuration, usually obtained from servlet context
     70 * // other runtime configuration, usually obtained from Servlet context
    7171 * HashMap<String, String> params = new HashMap<String, String>();
    7272 * params.put(SRUServerConfig.SRU_TRANSPORT, "http");
     
    225225    /**
    226226     * Parameter constant for configuring the size of response buffer. The
    227      * servlet will buffer up to this amount of data before sending a response
     227     * Servlet will buffer up to this amount of data before sending a response
    228228     * to the client. This value specifies the size of the buffer in bytes.
    229229     * <p>
     
    13421342            params.remove(legacyName);
    13431343            logger.warn("parameter '{}' is deprecated, please use "
    1344                     + "paramter '{}' instead!", legacyName, name);
     1344                    + "parameter '{}' instead!", legacyName, name);
    13451345        }
    13461346    }
Note: See TracChangeset for help on using the changeset viewer.