There was an error while loading. Please reload this page.
1 parent fb9d283 commit e9c1a83Copy full SHA for e9c1a83
1 file changed
src/main/java/it/aboutbits/springboot/toolbox/type/ScaledBigDecimal.java
@@ -5,6 +5,7 @@
5
import lombok.Getter;
6
import lombok.experimental.Accessors;
7
import org.jspecify.annotations.NullMarked;
8
+import org.jspecify.annotations.Nullable;
9
10
import java.math.BigDecimal;
11
import java.math.BigInteger;
@@ -218,7 +219,7 @@ public String toString() {
218
219
}
220
221
@Override
- public boolean equals(Object o) {
222
+ public boolean equals(@Nullable Object o) {
223
if (this == o) {
224
return true;
225
0 commit comments