Skip to content

Commit

Permalink
BE: Chore: Cleanup model package
Browse files Browse the repository at this point in the history
reverted
  • Loading branch information
wernerdv committed Feb 4, 2025
1 parent 91beb6d commit ecd5f24
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ private JsonType convertType(Schema schema) {
case INT, LONG -> new SimpleJsonType(JsonType.Type.INTEGER);
case MAP, RECORD -> new SimpleJsonType(JsonType.Type.OBJECT);
case ENUM -> new EnumJsonType(schema.getEnumSymbols());
case BYTES, STRING -> new SimpleJsonType(JsonType.Type.STRING);
case NULL -> new SimpleJsonType(JsonType.Type.NULL);
case ARRAY -> new SimpleJsonType(JsonType.Type.ARRAY);
case FIXED, FLOAT, DOUBLE -> new SimpleJsonType(JsonType.Type.NUMBER);
Expand Down

0 comments on commit ecd5f24

Please sign in to comment.