Skip to content

Commit

Permalink
fix:missing override annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxe9988 committed May 1, 2022
1 parent 9147d8e commit 31bbfc7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ public void writeRaw(String str) {
jsonWriter.writeRaw(str);
}

@Override
public byte[] getBytes() {
return jsonWriter.getBytes();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public DateTimeFormatter getFormatter() {
return formatter;
}

@Override
public ObjectWriter getObjectWriter(JSONWriter jsonWriter, Class valueClass) {
if (valueClass == fieldClass) {
if (dateWriter == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ protected FieldWriterObject(String name, int ordinal, long features, String form
|| fieldClass == AtomicIntegerArray.class;
}

@Override
public boolean unwrapped() {
return unwrapped;
}
Expand Down

0 comments on commit 31bbfc7

Please sign in to comment.