Skip to content

Commit 3922dbf

Browse files
committed
Merge pull request #4 from vtintillier/prepareversion239
Update version to 2.3.9-SNAPSHOT
2 parents 4d87d55 + 1a625a7 commit 3922dbf

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
target
22
*~
3+
# ignore Eclipse project files
4+
.classpath
5+
.project
6+
.settings

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>net.iharder</groupId>
44
<artifactId>base64</artifactId>
55
<packaging>bundle</packaging>
6-
<version>2.3.8</version>
6+
<version>2.3.9-SNAPSHOT</version>
77
<name>base64</name>
88
<url>http://iharder.net/base64/</url>
99
<description>A Java class providing very fast Base64 encoding and decoding

src/main/java/net/iharder/Base64.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* <p>Example:</p>
88
*
99
* <code>String encoded = Base64.encode( myByteArray );</code>
10-
* <br />
10+
* <br>
1111
* <code>byte[] myByteArray = Base64.decode( encoded );</code>
1212
*
1313
* <p>The <tt>options</tt> parameter, which appears in a few places, is used to pass
@@ -1113,6 +1113,7 @@ else if( source[ srcOffset + 3 ] == EQUALS_SIGN ) {
11131113
*
11141114
* @param source The Base64 encoded data
11151115
* @return decoded data
1116+
* @throws java.io.IOException If bogus characters exist in source data
11161117
* @since 2.3.1
11171118
*/
11181119
public static byte[] decode( byte[] source )
@@ -1669,7 +1670,7 @@ public InputStream( java.io.InputStream in ) {
16691670
* Valid options:<pre>
16701671
* ENCODE or DECODE: Encode or Decode as data is read.
16711672
* DO_BREAK_LINES: break lines at 76 characters
1672-
* (only meaningful when encoding)</i>
1673+
* <i>(only meaningful when encoding)</i>
16731674
* </pre>
16741675
* <p>
16751676
* Example: <code>new Base64.InputStream( in, Base64.DECODE )</code>
@@ -1882,7 +1883,7 @@ public OutputStream( java.io.OutputStream out ) {
18821883
* Valid options:<pre>
18831884
* ENCODE or DECODE: Encode or Decode as data is read.
18841885
* DO_BREAK_LINES: don't break lines at 76 characters
1885-
* (only meaningful when encoding)</i>
1886+
* <i>(only meaningful when encoding)</i>
18861887
* </pre>
18871888
* <p>
18881889
* Example: <code>new Base64.OutputStream( out, Base64.ENCODE )</code>

0 commit comments

Comments
 (0)