MCPcopy Index your code
hub / github.com/BombusMod/BombusMod / clearNick

Method clearNick

src/main/java/Client/Msg.java:177–184  ·  view source on GitHub ↗
(StringBuffer msgBuffer)

Source from the content-addressed store, hash-verified

175 }
176
177 public static String clearNick(StringBuffer msgBuffer) {
178 int i = 0;
179 while (i<msgBuffer.length()) {
180 if (msgBuffer.charAt(i)<0x03) msgBuffer.deleteCharAt(i);
181 else i++;
182 }
183 return msgBuffer.toString();
184 }
185}

Callers 3

quoteStringMethod · 0.95
QuoteMethod · 0.95
parseMessageMethod · 0.95

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected