19
19
import java .nio .file .Paths ;
20
20
import java .text .MessageFormat ;
21
21
import java .util .List ;
22
+ import java .util .Objects ;
22
23
23
24
public class FabricInstallerHelper extends InstallerHelper {
24
25
public static JButton buttonInstall ;
@@ -52,6 +53,7 @@ public JPanel setPanel(InstallerGUI gui) {
52
53
installLocation = new JTextField (20 ),
53
54
selectFolderButton = new JButton ());
54
55
selectFolderButton .setText ("..." );
56
+ // It looks better when the width is set to height, so.....
55
57
selectFolderButton .setPreferredSize (new Dimension (installLocation .getPreferredSize ().height , installLocation .getPreferredSize ().height ));
56
58
selectFolderButton .addActionListener (e -> InstallerGUI .selectInstallLocation (() -> installLocation .getText (), s -> installLocation .setText (s )));
57
59
@@ -76,7 +78,7 @@ public JPanel setPanel(InstallerGUI gui) {
76
78
buttonFabric = new JButton (Main .BUNDLE .getString ("installer.button.fabric" )));
77
79
buttonFabric .addActionListener (e -> {
78
80
try {
79
- Process process = Runtime .getRuntime ().exec ("java -jar cache/" + getJarFile ().getName ());
81
+ Process process = Runtime .getRuntime ().exec ("java -jar cache/" + Objects . requireNonNull ( getJarFile () ).getName ());
80
82
while (process .isAlive ()) {
81
83
buttonFabric .setEnabled (false );
82
84
}
@@ -91,8 +93,8 @@ public JPanel setPanel(InstallerGUI gui) {
91
93
92
94
@ Override
93
95
public void launch () throws IOException {
94
-
95
96
String stringGameVersion = (String ) gameVersionComboBox .getSelectedItem ();
97
+ assert stringGameVersion != null ;
96
98
FabricVersionHandler .GameVersion gameVersion = FabricVersionHandler .identifyGameVersion (stringGameVersion );
97
99
if (gameVersion == null ) return ;
98
100
@@ -104,7 +106,7 @@ public void launch() throws IOException {
104
106
}
105
107
106
108
System .out .println ("Installing Fabric " + gameVersion .getVersion () + " (" + gameVersion .getCodeName () + ")" );
107
- String [] cmd2 = new String []{"java" , "-jar" , "cache/" + getJarFile ().getName (), "client" , "-dir" + "\" " + mcPath .toAbsolutePath () + "\" " , "-mcversion" , gameVersion .codeName };
109
+ String [] cmd2 = new String []{"java" , "-jar" , "cache/" + Objects . requireNonNull ( getJarFile () ).getName (), "client" , "-dir" + "\" " + mcPath .toAbsolutePath () + "\" " , "-mcversion" , gameVersion .codeName };
108
110
109
111
110
112
try {
@@ -153,12 +155,12 @@ private File getJarFile() throws IOException {
153
155
return new File (cacheDir .toFile (), fileName );
154
156
}
155
157
156
- if (cacheDir .toFile ().listFiles ().length == 0 ) {
158
+ if (Objects . requireNonNull ( cacheDir .toFile ().listFiles () ).length == 0 ) {
157
159
Files .delete (cacheDir );
158
160
return getJarFile ();
159
161
}
160
162
161
- for (File file : cacheDir .toFile ().listFiles ()) {
163
+ for (File file : Objects . requireNonNull ( cacheDir .toFile ().listFiles () )) {
162
164
if (file .getName ().equals (fileName )) {
163
165
return file ;
164
166
} else {
0 commit comments