Reduce visibility of fields

This commit is contained in:
thatsIch 2014-10-05 15:25:09 +02:00
parent bfc14ddc54
commit 13cf7e7b50

View file

@ -2,10 +2,7 @@ package appeng.core.api;
import java.io.InputStream;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.*;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
@ -42,11 +39,10 @@ import com.google.common.base.Joiner;
public class ApiPart implements IPartHelper
{
final HashMap<String, Class> TileImplementations = new HashMap<String, Class>();
final HashMap<Class, String> interfaces2Layer = new HashMap<Class, String>();
final HashMap<String, Class> roots = new HashMap<String, Class>();
final List<String> desc = new LinkedList<String>();
private final Map<String, Class> TileImplementations = new HashMap<String, Class>();
private final Map<Class, String> interfaces2Layer = new HashMap<Class, String>();
private final Map<String, Class> roots = new HashMap<String, Class>();
private final List<String> desc = new LinkedList<String>();
public void initFMPSupport()
{