Skip to content

Commit

Permalink
Checkstyle fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-langer committed Nov 25, 2024
1 parent d481082 commit fc07534
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions common/common/src/main/java/io/helidon/common/Size.java
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,7 @@ enum Unit {
* Exbi-bytes (represented as either {@code EB} or {@code EiB}), where we use binary approach, i.e.
* 1 EB or EiB is 1024^6 bytes (1024 to the power 6), or 1024 PiB.
*/
EIB(1024, 6, "EB", "EiB"),
;
EIB(1024, 6, "EB", "EiB");

private static final Map<String, Unit> UNIT_MAP;

Expand Down

0 comments on commit fc07534

Please sign in to comment.