MCPcopy Create free account
hub / github.com/Frontrooms/3.0-GC / lowerCaseFirstChar

Method lowerCaseFirstChar

src/main/java/emu/grasscutter/utils/Utils.java:55–59  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

53 }
54
55 public static String lowerCaseFirstChar(String s) {
56 StringBuilder sb = new StringBuilder(s);
57 sb.setCharAt(0, Character.toLowerCase(sb.charAt(0)));
58 return sb.toString();
59 }
60
61 public static String toString(InputStream inputStream) throws IOException {
62 BufferedInputStream bis = new BufferedInputStream(inputStream);

Callers 1

getMapByResourceDefMethod · 0.95

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected