Skip to content

Commit c84bd47

Browse files
committed
refactor: ignore cast exception on CreativeTab
1 parent 261cd5f commit c84bd47

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/micdoodle8/mods/galacticraft/core/util/CreativeTabGC.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@ public void displayAllRelevantItems(NonNullList<ItemStack> list)
5858
try
5959
{
6060
Collections.sort(list, tabSorter);
61-
} catch (Exception e)
61+
} catch (Exception ingored)
6262
{
63-
e.printStackTrace();
6463
}
6564
}
6665
}

0 commit comments

Comments
 (0)