diff options
| author | chill <chill.gtnh@outlook.com> | 2023-05-28 11:22:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-28 11:22:18 +0200 |
| commit | fecc8533c5d52cf9bee137687fdda280dab2e39a (patch) | |
| tree | f52544f5ef7196c4b4230d53ccd8eb7eac1b9597 /src/main/java/gregtech/common/tileentities/casings | |
| parent | 0f97af86a57831c358089b361ce9fc9c6ece12f7 (diff) | |
| download | GT5-Unofficial-fecc8533c5d52cf9bee137687fdda280dab2e39a.tar.gz GT5-Unofficial-fecc8533c5d52cf9bee137687fdda280dab2e39a.tar.bz2 GT5-Unofficial-fecc8533c5d52cf9bee137687fdda280dab2e39a.zip | |
make private fields final where possible (#2028)
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/casings')
| -rw-r--r-- | src/main/java/gregtech/common/tileentities/casings/upgrade/Inventory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/casings/upgrade/Inventory.java b/src/main/java/gregtech/common/tileentities/casings/upgrade/Inventory.java index cc62de308c..e42f0bfb86 100644 --- a/src/main/java/gregtech/common/tileentities/casings/upgrade/Inventory.java +++ b/src/main/java/gregtech/common/tileentities/casings/upgrade/Inventory.java @@ -22,7 +22,7 @@ public class Inventory extends UpgradeCasing { public static final int BOTH = 2; private String mInventoryName = "inventory"; private int mInventorySize; - private int mType = BOTH; + private final int mType = BOTH; public String getInventoryName() { return mInventoryName; |
