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

Method concatNoSpace

forge-core/src/main/java/forge/util/TextUtil.java:238–244  ·  view source on GitHub ↗
(String ... s)

Source from the content-addressed store, hash-verified

236
237 //concatenate no spaces
238 public static String concatNoSpace(String ... s) {
239 StringBuilder sb = new StringBuilder();
240 for (String str : s) {
241 sb.append(str);
242 }
243 return sb.toString();
244 }
245
246 //enclosed in Parentheses
247 public static String enclosedParen(String s){

Callers 15

toStringMethod · 0.95
appendCardsMethod · 0.95
countersToStringMethod · 0.95
canPayMethod · 0.95
canPayMethod · 0.95
toStringMethod · 0.95
addSpellAbilityMethod · 0.95
toStringMethod · 0.95
filterListByTypeMethod · 0.95
updateLabelsMethod · 0.95
updateLabelsMethod · 0.95

Calls 2

appendMethod · 0.45
toStringMethod · 0.45

Tested by 2

getUserDirMethod · 0.76
runTournamentMethod · 0.76