We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba3e7b3 commit 1f1ba41Copy full SHA for 1f1ba41
src/main/java/com/github/fabienrenaud/jjb/JsonUtils.java
@@ -1,7 +1,5 @@
1
package com.github.fabienrenaud.jjb;
2
3
-import com.dslplatform.json.JsonWriter;
4
-
5
import javax.json.spi.JsonProvider;
6
import java.io.ByteArrayOutputStream;
7
@@ -34,7 +32,4 @@ public static StringBuilder stringBuilder() {
34
32
private static final ThreadLocal<ByteArrayOutputStream> THREAD_BYTE_ARRAY_OUTPUT_STREAM = ThreadLocal.withInitial(ByteArrayOutputStream::new);
35
33
36
private static final ThreadLocal<StringBuilder> THREAD_STRING_BUILDER = ThreadLocal.withInitial(StringBuilder::new);
37
38
- private static final ThreadLocal<com.dslplatform.json.JsonWriter> THREAD_DSL_WRITER = ThreadLocal.withInitial(JsonWriter::new);
39
40
}
0 commit comments