style: format code (#95)

Co-authored-by: ReaJason <[email protected]>
This commit is contained in:
Wans
2025-08-28 17:50:23 +08:00
committed by GitHub
co-authored by ReaJason
parent 8f2872e542
commit e844bd5871
@@ -12,6 +12,6 @@ public class BigIntegerPacker implements Packer {
@Override
@SneakyThrows
public String pack(ClassPackerConfig config) {
return new BigInteger(config.getClassBytes()).toString( Character.MAX_RADIX);
return new BigInteger(config.getClassBytes()).toString(Character.MAX_RADIX);
}
}