Skip to content

Commit f69242a

Browse files
author
Michael Hillcox
committed
Looks like this isn't supported
1 parent 50dc6e4 commit f69242a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/fgtxray/FgtXRay.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class FgtXRay
5959

6060
public static Configuration config = null;
6161

62-
public static Map<String, OreInfo> oredictOres = new HashMap<>();
62+
public static Map<String, OreInfo> oredictOres = new HashMap<String, OreInfo>();
6363
/* Ores to check through the ore dictionary and add each instance found to the searchList.
6464
* put( "oreType", new OreInfo(...) ) oreType is the ore dictionary string id. Press Print OreDict and check console to see list.
6565
* OreInfo( String "Gui Name", // The name to be displayed in the GUI.
@@ -69,7 +69,7 @@ public class FgtXRay
6969
* Open DefaultConfig.java for more info.
7070
*/
7171

72-
public static List<OreInfo> customOres = new ArrayList<>();
72+
public static List<OreInfo> customOres = new ArrayList<OreInfo>();
7373
/* List of custom id:meta to add.
7474
* OreInfo( String "Gui Name", // Displayed in the GUI.
7575
* int id, int meta, // Set these to whatever the id:meta is for your block.

0 commit comments

Comments
 (0)