Skip to content

Commit c0a095d

Browse files
committed
Fix warning
1 parent 2bcfd1d commit c0a095d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/com/blamejared/compat/betterwithmods

src/main/java/com/blamejared/compat/betterwithmods/Anvil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public static Object[] toShapedAnvilObjectsFixed(IIngredient[][] ingredients) {
148148
if(ingredients == null)
149149
return null;
150150
else {
151-
ArrayList prep = new ArrayList();
151+
ArrayList<Object> prep = new ArrayList<>();
152152
char chr = 'a';
153153
for(int x = 0; x < 4; x++) {
154154
StringBuilder matrix = new StringBuilder();

0 commit comments

Comments
 (0)