You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prevent StackOverflowError when serializing Path using JsonValueWriter
Prior to this commit, serializing `java.nio.file.Path` caused
a StackOverflowError because `Path.iterator()` always returns itself
as the first element of the iterator, which results in a StackOverflowError.
This commit serializes `java.nio.file.Path` as JSON String.
Signed-off-by: Dmytro Nosan <[email protected]>
0 commit comments