Clean up old code

This commit is contained in:
xhh 2015-05-25 17:25:01 +08:00
parent ed14c515bf
commit aa03be7f76
2 changed files with 0 additions and 24 deletions

View File

@ -119,18 +119,6 @@ public class ApiInvoker {
return contentTypes[0];
}
public static String joinString(String[] array, String separator) {
int len = array.length;
if (len == 0) return "";
StringBuilder out = new StringBuilder();
out.append(array[0]);
for (int i = 1; i < len; i++) {
out.append(separator).append(array[i]);
}
return out.toString();
}
public void enableDebug() {
isDebug = true;
}

View File

@ -119,18 +119,6 @@ public class ApiInvoker {
return contentTypes[0];
}
public static String joinString(String[] array, String separator) {
int len = array.length;
if (len == 0) return "";
StringBuilder out = new StringBuilder();
out.append(array[0]);
for (int i = 1; i < len; i++) {
out.append(separator).append(array[i]);
}
return out.toString();
}
public void enableDebug() {
isDebug = true;
}