Skip to content

Commit 1f4b345

Browse files
committed
Use primitive types
1 parent 7dd2ab3 commit 1f4b345

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/mcdocker/launcher/container/Dockerfile.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ public void setMods(List<ModManifest> mods) {
7979
this.mods = mods;
8080
}
8181

82-
public void setMemory(Integer memory) {
82+
public void setMemory(int memory) {
8383
this.memory = memory;
8484
}
8585

86-
public Integer getMemory() {
86+
public int getMemory() {
8787
return memory;
8888
}
8989

0 commit comments

Comments
 (0)