Skip to content

Commit e344203

Browse files
committed
no more null!!
1 parent 29209c4 commit e344203

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

src/main/java/com/nexia/installer/util/InstallerHelper.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public JPanel setPanel(InstallerGUI gui) {
4242
installLocation = new JTextField(20),
4343
selectFolderButton = new JButton());
4444
selectFolderButton.setText("...");
45+
// It looks better when the width is set to height, so.....
4546
selectFolderButton.setPreferredSize(new Dimension(installLocation.getPreferredSize().height, installLocation.getPreferredSize().height));
4647
selectFolderButton.addActionListener(e -> InstallerGUI.selectInstallLocation(() -> installLocation.getText(), s -> installLocation.setText(s)));
4748

@@ -109,8 +110,8 @@ public void addRow(Container parent, GridBagConstraints c, boolean last, String
109110
}
110111

111112
public void launch() throws IOException {
112-
113113
String stringGameVersion = (String) gameVersionComboBox.getSelectedItem();
114+
assert stringGameVersion != null;
114115
VersionHandler.GameVersion gameVersion = VersionHandler.identifyGameVersion(stringGameVersion);
115116
if(gameVersion == null) return;
116117

src/main/java/com/nexia/installer/util/fabric/FabricInstallerHelper.java

+7-5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import java.nio.file.Paths;
2020
import java.text.MessageFormat;
2121
import java.util.List;
22+
import java.util.Objects;
2223

2324
public class FabricInstallerHelper extends InstallerHelper {
2425
public static JButton buttonInstall;
@@ -52,6 +53,7 @@ public JPanel setPanel(InstallerGUI gui) {
5253
installLocation = new JTextField(20),
5354
selectFolderButton = new JButton());
5455
selectFolderButton.setText("...");
56+
// It looks better when the width is set to height, so.....
5557
selectFolderButton.setPreferredSize(new Dimension(installLocation.getPreferredSize().height, installLocation.getPreferredSize().height));
5658
selectFolderButton.addActionListener(e -> InstallerGUI.selectInstallLocation(() -> installLocation.getText(), s -> installLocation.setText(s)));
5759

@@ -76,7 +78,7 @@ public JPanel setPanel(InstallerGUI gui) {
7678
buttonFabric = new JButton(Main.BUNDLE.getString("installer.button.fabric")));
7779
buttonFabric.addActionListener(e -> {
7880
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());
8082
while(process.isAlive()) {
8183
buttonFabric.setEnabled(false);
8284
}
@@ -91,8 +93,8 @@ public JPanel setPanel(InstallerGUI gui) {
9193

9294
@Override
9395
public void launch() throws IOException {
94-
9596
String stringGameVersion = (String) gameVersionComboBox.getSelectedItem();
97+
assert stringGameVersion != null;
9698
FabricVersionHandler.GameVersion gameVersion = FabricVersionHandler.identifyGameVersion(stringGameVersion);
9799
if(gameVersion == null) return;
98100

@@ -104,7 +106,7 @@ public void launch() throws IOException {
104106
}
105107

106108
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};
108110

109111

110112
try {
@@ -153,12 +155,12 @@ private File getJarFile() throws IOException {
153155
return new File(cacheDir.toFile(), fileName);
154156
}
155157

156-
if(cacheDir.toFile().listFiles().length == 0) {
158+
if(Objects.requireNonNull(cacheDir.toFile().listFiles()).length == 0) {
157159
Files.delete(cacheDir);
158160
return getJarFile();
159161
}
160162

161-
for(File file : cacheDir.toFile().listFiles()) {
163+
for(File file : Objects.requireNonNull(cacheDir.toFile().listFiles())) {
162164
if(file.getName().equals(fileName)) {
163165
return file;
164166
} else {

0 commit comments

Comments
 (0)