Trivial code cleanup
This commit is contained in:
parent
9b34c5119f
commit
f9680d4cda
2 changed files with 17 additions and 16 deletions
|
@ -2,6 +2,7 @@ package net.vhati.modmanager.core;
|
|||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
import net.vhati.modmanager.core.ModInfo;
|
||||
|
||||
|
@ -11,7 +12,7 @@ public class ModDB {
|
|||
// Accociates Forum thread urls with hashes of their forst post's content.
|
||||
private HashMap<String,String> threadHashMap = new HashMap<String,String>();
|
||||
|
||||
private ArrayList<ModInfo> catalog = new ArrayList<ModInfo>();
|
||||
private List<ModInfo> catalog = new ArrayList<ModInfo>();
|
||||
|
||||
|
||||
/**
|
||||
|
@ -55,7 +56,7 @@ public class ModDB {
|
|||
/**
|
||||
* Returns the internal ArrayList of mod info.
|
||||
*/
|
||||
public ArrayList<ModInfo> getCatalog() {
|
||||
public List<ModInfo> getCatalog() {
|
||||
return catalog;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue