Skip to content

Commit

Permalink
Fix typo in JsonToPolyConversion
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Oct 21, 2024
1 parent f1e2869 commit 16dce89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public PolyValue nodeToPolyValue( JsonNode node ) {
case ARRAY -> nodeToPolyList( node );
case OBJECT -> nodeToPolyMap( node );
case NUMBER -> nodeToPolyNumber( node );
case STRING -> new PolyString( node.toString() );
case STRING -> new PolyString( node.asText() );
case BOOLEAN -> new PolyBoolean( node.asBoolean() );
case BINARY, MISSING, POJO -> new PolyNull();
};
Expand Down

0 comments on commit 16dce89

Please sign in to comment.