Revision: 652
          http://stripes.svn.sourceforge.net/stripes/?rev=652&view=rev
Author:   bengunter
Date:     2007-12-07 04:55:17 -0800 (Fri, 07 Dec 2007)

Log Message:
-----------
added @Override where appropriate

Modified Paths:
--------------
    trunk/stripes/src/net/sourceforge/stripes/util/Base64.java

Modified: trunk/stripes/src/net/sourceforge/stripes/util/Base64.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/util/Base64.java  2007-12-07 
05:33:02 UTC (rev 651)
+++ trunk/stripes/src/net/sourceforge/stripes/util/Base64.java  2007-12-07 
12:55:17 UTC (rev 652)
@@ -1413,6 +1413,7 @@
          * @return next byte
          * @since 1.3
          */
+        @Override
         public int read() throws java.io.IOException 
         { 
             // Do we need to get data?
@@ -1541,6 +1542,7 @@
          * @return bytes read into array or -1 if end of stream is encountered.
          * @since 1.3
          */
+        @Override
         public int read( byte[] dest, int off, int len ) throws 
java.io.IOException
         {
             int i;
@@ -1657,6 +1659,7 @@
          * @param theByte the byte to write
          * @since 1.3
          */
+        @Override
         public void write(int theByte) throws java.io.IOException
         {
             // Encoding suspended?
@@ -1718,6 +1721,7 @@
          * @param len max number of bytes to read into array
          * @since 1.3
          */
+        @Override
         public void write( byte[] theBytes, int off, int len ) throws 
java.io.IOException
         {
             // Encoding suspended?
@@ -1763,6 +1767,7 @@
          *
          * @since 1.3
          */
+        @Override
         public void close() throws java.io.IOException
         {
             // 1. Ensure that pending characters are written


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to