Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Jan 13, 2025
1 parent a73960f commit f0d1d6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public Map<String, Object> readObject() {
} else if (valueType == BC_OBJECT) {
value = readObject();
} else if (valueType == BC_INT64) {
value= IOUtils.getLongBE(bytes, offset + 1);
value = IOUtils.getLongBE(bytes, offset + 1);
offset += 9;
} else if (valueType >= BC_ARRAY_FIX_MIN && valueType <= BC_ARRAY) {
offset++;
Expand Down

0 comments on commit f0d1d6d

Please sign in to comment.