Finalize variables
This commit is contained in:
parent
542c1dcdbd
commit
075fd1848a
2 changed files with 5 additions and 5 deletions
|
@ -35,7 +35,7 @@ public class GuiInterfaceTerminal extends AEBaseGui
|
||||||
private static final int LINES_ON_PAGE = 6;
|
private static final int LINES_ON_PAGE = 6;
|
||||||
|
|
||||||
// TODO: copied from GuiMEMonitorable. It looks not changed, maybe unneeded?
|
// TODO: copied from GuiMEMonitorable. It looks not changed, maybe unneeded?
|
||||||
int offsetX = 9;
|
final int offsetX = 9;
|
||||||
|
|
||||||
private final HashMap<Long, ClientDCInternalInv> byId = new HashMap<Long, ClientDCInternalInv>();
|
private final HashMap<Long, ClientDCInternalInv> byId = new HashMap<Long, ClientDCInternalInv>();
|
||||||
private final HashMultimap<String, ClientDCInternalInv> byName = HashMultimap.create();
|
private final HashMultimap<String, ClientDCInternalInv> byName = HashMultimap.create();
|
||||||
|
|
|
@ -15,10 +15,10 @@ public class GuiProgressBar extends GuiButton implements ITooltip
|
||||||
}
|
}
|
||||||
|
|
||||||
private final IProgressProvider source;
|
private final IProgressProvider source;
|
||||||
private ResourceLocation texture;
|
private final ResourceLocation texture;
|
||||||
private int fill_u;
|
private final int fill_u;
|
||||||
private int fill_v;
|
private final int fill_v;
|
||||||
private Direction layout;
|
private final Direction layout;
|
||||||
|
|
||||||
private String fullMsg;
|
private String fullMsg;
|
||||||
private final String titleName;
|
private final String titleName;
|
||||||
|
|
Loading…
Reference in a new issue