final class FormatConverter implements Converter {
public static final FormatConverter INSTANCE = new FormatConverter();
public Object convert(JSON json, Context context, Object value, Class<?> c, Type t) throws Exception {
Context context2 = json.new Context(context);
context2.skipHint = true;
value = json.preformatInternal(context2, value);
StringBuilderOutputSource fs = new StringBuilderOutputSource(new StringBuilder(200));
try {
json.formatInternal(context2, value, fs);