MCPcopy Index your code
hub / github.com/MCBans/MCBans / toString

Method toString

src/main/java/com/mcbans/plugin/org/json/JSONArray.java:818–825  ·  view source on GitHub ↗

Make a JSON text of this JSONArray. For compactness, no unnecessary whitespace is added. If it is not possible to produce a syntactically correct JSON text then null will be returned instead. This could occur if the array contains an invalid number. Warning: This method assumes that the data str

()

Source from the content-addressed store, hash-verified

816 * representation of the array.
817 */
818 @Override
819 public String toString() {
820 try {
821 return '[' + join(",") + ']';
822 } catch (Exception e) {
823 return null;
824 }
825 }
826
827
828 /**

Callers 3

getStringMethod · 0.45
joinMethod · 0.45
optStringMethod · 0.45

Calls 5

joinMethod · 0.95
lengthMethod · 0.95
valueToStringMethod · 0.95
appendMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected