mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Squash that unchecked warning gradle keeps producing for no reason
This commit is contained in:
parent
2cde5e586d
commit
e583b83b62
1 changed files with 1 additions and 1 deletions
|
@ -2,6 +2,7 @@ package com.minelittlepony.api.pony;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public class TriggerPixelSet<T extends Enum<T> & TriggerPixelType<T>> extends TriggerPixelValue<boolean[]> {
|
||||
|
||||
private final T def;
|
||||
|
@ -11,7 +12,6 @@ public class TriggerPixelSet<T extends Enum<T> & TriggerPixelType<T>> extends Tr
|
|||
this.def = def;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public List<TriggerPixelType<T>> getOptions() {
|
||||
return def.getOptions();
|
||||
|
|
Loading…
Reference in a new issue