1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-21 22:02:06 +01:00

Remove unused method in Smack's Base64 API

This commit is contained in:
Florian Schmaus 2019-04-09 09:33:06 +02:00
parent 62fd897cf7
commit 474ea68d4a

View file

@ -54,10 +54,6 @@ public class Base64 {
return base64encoder.encode(input);
}
public static final byte[] encode(byte[] input, int offset, int len) {
return encode(slice(input, offset, len));
}
public static final String decodeToString(String string) {
byte[] bytes = decode(string);
try {