Skip to content

Commit 9756166

Browse files
committed
Java 7-ize this class
1 parent bdb8112 commit 9756166

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Essentials/src/com/earth2me/essentials/ItemDb.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323

2424
public class ItemDb implements IConf, net.ess3.api.IItemDb {
2525
private final transient IEssentials ess;
26-
private final transient Map<String, Integer> items = new HashMap<String, Integer>();
27-
private final transient Map<ItemData, List<String>> names = new HashMap<ItemData, List<String>>();
28-
private final transient Map<ItemData, String> primaryName = new HashMap<ItemData, String>();
29-
private final transient Map<String, Short> durabilities = new HashMap<String, Short>();
26+
private final transient Map<String, Integer> items = new HashMap<>();
27+
private final transient Map<ItemData, List<String>> names = new HashMap<>();
28+
private final transient Map<ItemData, String> primaryName = new HashMap<>();
29+
private final transient Map<String, Short> durabilities = new HashMap<>();
3030
private final transient ManagedFile file;
3131
private final transient Pattern splitPattern = Pattern.compile("((.*)[:+',;.](\\d+))");
3232

@@ -90,7 +90,7 @@ public ItemStack get(final String id, final int quantity) throws Exception {
9090
@Override
9191
public ItemStack get(final String id) throws Exception {
9292
int itemid = 0;
93-
String itemname = null;
93+
String itemname;
9494
short metaData = 0;
9595
Matcher parts = splitPattern.matcher(id);
9696
if (parts.matches()) {
@@ -160,7 +160,7 @@ public ItemStack get(final String id) throws Exception {
160160

161161
@Override
162162
public List<ItemStack> getMatching(User user, String[] args) throws Exception {
163-
List<ItemStack> is = new ArrayList<ItemStack>();
163+
List<ItemStack> is = new ArrayList<>();
164164

165165
if (args.length < 1) {
166166
is.add(user.getBase().getItemInHand());

0 commit comments

Comments
 (0)