Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@
* this priority order:
*
* <ul>
* <li>{@code VarHandleStringEncoder} - High-performance Java 9+ implementation using VarHandle
* <li>{@code UnsafeStringEncoder} - High-performance Java 8+ implementation using sun.misc.Unsafe
* <li>{@code UnsafeStringEncoder} - High-performance Java 8+ implementation using
* sun.misc.Unsafe. Only attempted when the Java version is detected to be below 23, to avoid
* the JEP 498 deprecation warning.
* <li>{@code VarHandleStringEncoder} - High-performance Java 9+ implementation using VarHandle.
* Requires {@code --add-opens=java.base/java.lang=ALL-UNNAMED}.
* <li>{@code FallbackStringEncoder} - Implementation using standard Java operations
* </ul>
*
Expand Down
Loading