Update of /var/cvs/applications/resources/src/org/mmbase/servlet
In directory james.mmbase.org:/tmp/cvs-serv3410

Modified Files:
        HandleServlet.java 
Log Message:
typo


See also: 
http://cvs.mmbase.org/viewcvs/applications/resources/src/org/mmbase/servlet


Index: HandleServlet.java
===================================================================
RCS file: 
/var/cvs/applications/resources/src/org/mmbase/servlet/HandleServlet.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- HandleServlet.java  9 Dec 2008 15:59:54 -0000       1.4
+++ HandleServlet.java  24 Apr 2009 06:26:34 -0000      1.5
@@ -28,7 +28,7 @@
  * specialized servlets. The mime-type is always application/x-binary, forcing 
the browser to
  * download.
  *
- * @version $Id: HandleServlet.java,v 1.4 2008/12/09 15:59:54 michiel Exp $
+ * @version $Id: HandleServlet.java,v 1.5 2009/04/24 06:26:34 michiel Exp $
  * @author Michiel Meeuwissen
  * @since  MMBase-1.6
  * @see ImageServlet
@@ -43,6 +43,7 @@
 
     private static Cache<Integer, Integer> jpegSizes = null;
 
+    @Override
     protected Map<String, Integer> getAssociations() {
         Map a = super.getAssociations();
         // Can do the following:
@@ -56,6 +57,7 @@
      * Takes care of the 'expire' init-parameter.
      * {...@inheritdoc}
      */
+    @Override
     public void init() throws ServletException {
         super.init();
         log = Logging.getLoggerInstance(HandleServlet.class);
@@ -78,7 +80,7 @@
                     return "JPEGSizes";
                 }
                 public String getDescription() {
-                    return "HandleServlet may ditch some bytes from 
Jpeg-steams to please IE";
+                    return "HandleServlet may ditch some bytes from 
Jpeg-streams to please IE";
                 }
 
             };
@@ -220,7 +222,7 @@
     /**
      * Serves a node with a byte[] handle field as an attachment.
      */
-
+    @Override
     public void doGet(HttpServletRequest req, HttpServletResponse res) throws 
ServletException, IOException {
         QueryParts query = readQuery(req, res);
         Node queryNode = getNode(query);
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to