15 lines
285 B
Java
15 lines
285 B
Java
package me.skymc.taboolib.json;
|
|
|
|
import java.io.StringWriter;
|
|
|
|
public class JSONStringer extends JSONWriter {
|
|
|
|
public JSONStringer() {
|
|
super(new StringWriter());
|
|
}
|
|
|
|
public String toString() {
|
|
return this.mode == 'd' ? this.writer.toString() : null;
|
|
}
|
|
}
|