D'oh, .decodeToString was already there, eliminated my vers

This commit is contained in:
aum
2005-03-23 06:26:23 +00:00
committed by zzz
parent 18bbae1d1e
commit b232cc0f24

View File

@ -59,10 +59,6 @@ public class Base64 {
return safeEncode(source, off, len, useStandardAlphabet);
}
/** convenience method added by aum */
public static String decodeToString(String s) {
return new String(decode(s));
}
public static byte[] decode(String s) {
return safeDecode(s, false);
}