File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
src/main/java/net/iharder Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11target
22* ~
3+ # ignore Eclipse project files
4+ .classpath
5+ .project
6+ .settings
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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>
You can’t perform that action at this time.
0 commit comments