Skip to content

Commit 0dcc59e

Browse files
committed
#38 - Change system property to jsonb.useTLBuffers
1 parent 0867541 commit 0dcc59e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonb/src/main/java/io/avaje/jsonb/stream/Recycle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ private Recycle() {}
1212

1313
static {
1414
if (Float.parseFloat(System.getProperty("java.specification.version")) >= 19
15-
&& !Boolean.getBoolean("jsonb.UseTLBuffers")) {
15+
&& !Boolean.getBoolean("jsonb.useTLBuffers")) {
1616
jvmRecycle = true;
1717
} else {
1818
managed = ThreadLocal.withInitial(Recycle::getGenerator);

0 commit comments

Comments
 (0)