MCPcopy Create free account
hub / github.com/FongMi/TV / substring

Method substring

app/src/main/java/com/fongmi/android/tv/utils/Util.java:155–157  ·  view source on GitHub ↗
(String text)

Source from the content-addressed store, hash-verified

153 }
154
155 public static String substring(String text) {
156 return substring(text, 1);
157 }
158
159 public static String substring(String text, int num) {
160 if (text != null && text.length() > num) return text.substring(0, text.length() - num);

Callers 15

cleanMethod · 0.95
getMacMethod · 0.95
startWebMethod · 0.95
setOtherMethod · 0.95
buildHeaderMethod · 0.95
parseTimeToMsMethod · 0.45
getMethod · 0.45
readHeadersMethod · 0.45
getTextDrawableMethod · 0.45
convertMethod · 0.45
extUrlMethod · 0.45
formatMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected