MCPcopy Create free account
hub / github.com/demoth/jake2 / sprintf

Method sprintf

qcommon/src/main/java/jake2/qcommon/Com.java:327–334  ·  view source on GitHub ↗
(String fmt, Vargs vargs)

Source from the content-addressed store, hash-verified

325 }
326
327 @Deprecated
328 public static String sprintf(String fmt, Vargs vargs) {
329 if (vargs == null || vargs.size() == 0) {
330 return fmt;
331 } else {
332 return new PrintfFormat(fmt).sprintf(vargs.toArray());
333 }
334 }
335
336 public static String StripExtension(String string) {
337 int i = string.lastIndexOf('.');

Callers 6

DrawInventoryMethod · 0.95
ExecuteLayoutStringMethod · 0.95
DrawConsoleMethod · 0.95
ErrorMethod · 0.95
PrintfMethod · 0.95
vtofsbeatyMethod · 0.95

Calls 2

sizeMethod · 0.80
toArrayMethod · 0.80

Tested by

no test coverage detected