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;
|
||||
|
||||
// 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 HashMultimap<String, ClientDCInternalInv> byName = HashMultimap.create();
|
||||
|
|
|
@ -15,10 +15,10 @@ public class GuiProgressBar extends GuiButton implements ITooltip
|
|||
}
|
||||
|
||||
private final IProgressProvider source;
|
||||
private ResourceLocation texture;
|
||||
private int fill_u;
|
||||
private int fill_v;
|
||||
private Direction layout;
|
||||
private final ResourceLocation texture;
|
||||
private final int fill_u;
|
||||
private final int fill_v;
|
||||
private final Direction layout;
|
||||
|
||||
private String fullMsg;
|
||||
private final String titleName;
|
||||
|
|
Loading…
Reference in a new issue