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
1 changed files with 0 additions and 4 deletions

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 {