changed 'String decode(String raw)' to 'String decodeToString(String raw)'

to eliminate name clash.
This commit is contained in:
aum
2005-03-23 06:24:25 +00:00
committed by zzz
parent 08ee62b52c
commit 18bbae1d1e

View File

@ -60,7 +60,7 @@ public class Base64 {
} }
/** convenience method added by aum */ /** convenience method added by aum */
public static String decode(String s) { public static String decodeToString(String s) {
return new String(decode(s)); return new String(decode(s));
} }
public static byte[] decode(String s) { public static byte[] decode(String s) {