Skip to content

Commit fde954e

Browse files
committed
Remove nullable
1 parent 3bfa66c commit fde954e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/aztech/modern_industrialization/attributes/InfiniteDamageAttribute.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
import net.minecraft.util.Mth;
3333
import net.minecraft.world.entity.ai.attributes.AttributeModifier;
3434
import net.minecraft.world.item.TooltipFlag;
35-
import org.jetbrains.annotations.Nullable;
3635

3736
public class InfiniteDamageAttribute extends DisplayNamedAttribute {
3837
private static final String INFINITY = "\u221e";
@@ -44,7 +43,7 @@ public InfiniteDamageAttribute() {
4443
// Allows a modifier with the base id to render green with the effective value.
4544
// Other modifiers still render blue with the additional value.
4645
@Override
47-
public @Nullable ResourceLocation getBaseId() {
46+
public ResourceLocation getBaseId() {
4847
return QuantumSword.BASE_INFINITE_DAMAGE;
4948
}
5049

0 commit comments

Comments
 (0)