MCPcopy Create free account
hub / github.com/Card-Forge/forge / addSuffix

Method addSuffix

forge-core/src/main/java/forge/util/TextUtil.java:283–288  ·  view source on GitHub ↗
(String s, String suffix)

Source from the content-addressed store, hash-verified

281
282 //suffix
283 public static String addSuffix(String s, String suffix){
284 StringBuilder sb = new StringBuilder();
285 sb.append(s);
286 sb.append(suffix);
287 return sb.toString();
288 }
289
290 //prefix
291 public static String addPrefix(String prefix, String s){

Callers 5

validateBlocksMethod · 0.95
toStringMethod · 0.95
playerXPropertyMethod · 0.95
mainLoopStepMethod · 0.95
getImageFileMethod · 0.95

Calls 2

appendMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected