Skip to content

Commit

Permalink
Supress "rawtypes" Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatMG393 committed Feb 27, 2024
1 parent dfded27 commit 0a35b10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public AbstractConfigSubCategory(Text title, AbstractConfigSubCategory csc) {
this.defaultConfig = csc.defaultConfig;
}

@SuppressWarnings("rawtypes")
public abstract ArrayList<AbstractConfigListEntry> getEntries();

public SubCategoryListEntry build() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import me.shedaniel.clothconfig2.api.AbstractConfigListEntry;
import net.minecraft.text.Text;

@SuppressWarnings("rawtypes")
public class FPSCategory extends AbstractConfigCategory {
public class SubCategory extends AbstractConfigSubCategory {
public SubCategory() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import me.shedaniel.clothconfig2.api.AbstractConfigListEntry;
import net.minecraft.text.Text;

@SuppressWarnings("rawtypes")
public class STDCategory extends AbstractConfigCategory {
public STDCategory() {
super(Text.of("SprintToggleDisplay"));
Expand Down

0 comments on commit 0a35b10

Please sign in to comment.