MCPcopy Create free account
hub / github.com/Neop/mudmap2 / join

Method join

src/main/java/mudmap2/utils/StringHelper.java:11–17  ·  view source on GitHub ↗

Concatenates the given objects into a single String @param objects The objects to join @return

(final Object... objects)

Source from the content-addressed store, hash-verified

9 * @return
10 */
11 public static String join(final Object... objects) {
12 final StringBuilder b = new StringBuilder();
13 for (final Object object : objects) {
14 b.append(object);
15 }
16 return b.toString();
17 }
18
19}

Callers 9

MainwindowMethod · 0.95
actionPerformedMethod · 0.95
initGuiMethod · 0.95
createNewWorldMethod · 0.95
closeTabsMethod · 0.95
stateChangedMethod · 0.95
ContextMenuMethod · 0.95
actionPerformedMethod · 0.95
keyPressedMethod · 0.95

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected