2013/3/15 <simonetrip...@apache.org> > Author: simonetripodi > Date: Fri Mar 15 15:03:46 2013 > New Revision: 1456980 > > URL: http://svn.apache.org/r1456980 > Log: > Javadoc sentences start with upper case letters >
Nice one :) > > Modified: > > commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/mime/Base64Decoder.java > > Modified: > commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/mime/Base64Decoder.java > URL: > http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/mime/Base64Decoder.java?rev=1456980&r1=1456979&r2=1456980&view=diff > > ============================================================================== > --- > commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/mime/Base64Decoder.java > (original) > +++ > commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/mime/Base64Decoder.java > Fri Mar 15 15:03:46 2013 > @@ -25,7 +25,7 @@ import java.io.OutputStream; > final class Base64Decoder { > > /** > - * set up the encoding table. > + * Set up the encoding table. > */ > private static final byte[] ENCODING_TABLE = { > (byte) 'A', (byte) 'B', (byte) 'C', (byte) 'D', (byte) 'E', > (byte) 'F', (byte) 'G', > @@ -48,12 +48,12 @@ final class Base64Decoder { > private static final byte PADDING = (byte) '='; > > /** > - * the decoding table size. > + * The decoding table size. > */ > private static final int DECODING_TABLE_SIZE = 256; > > /** > - * set up the decoding table. > + * Set up the decoding table. > */ > private static final byte[] DECODING_TABLE = new > byte[DECODING_TABLE_SIZE]; > > @@ -82,7 +82,7 @@ final class Base64Decoder { > } > > /** > - * decode the base 64 encoded byte data writing it to the given > output stream, > + * Decode the base 64 encoded byte data writing it to the given > output stream, > * whitespace characters will be ignored. > * > * @return the number of bytes produced. > > > -- http://people.apache.org/~britter/ http://www.systemoutprintln.de/ http://twitter.com/BenediktRitter http://github.com/britter