修改部分阻断问题
This commit is contained in:
parent
ed407d3129
commit
0834814b9a
|
@ -73,6 +73,7 @@ public class UpdateRatingFiles {
|
|||
while ((record = br.readLine()) != null) {
|
||||
battles.add(record);
|
||||
}
|
||||
fr.close();
|
||||
} catch (IOException e) {
|
||||
System.out.println("Can't open # battles file ... Aborting # battles update");
|
||||
return false;
|
||||
|
|
|
@ -228,7 +228,7 @@ public class PreferencesSoundOptionsTab extends WizardPanel {
|
|||
if (AudioSystem.getMixer(mi).getSourceLineInfo(clipLineInfo).length > 0) {
|
||||
mixers.add(mi);
|
||||
}
|
||||
mi.close();
|
||||
AudioSystem.getMixer(mi).close();
|
||||
}
|
||||
|
||||
mixerComboBox = new JComboBox(mixers);
|
||||
|
@ -319,7 +319,7 @@ public class PreferencesSoundOptionsTab extends WizardPanel {
|
|||
getMixerComboBox().setSelectedItem(mi);
|
||||
break;
|
||||
}
|
||||
mi.close();
|
||||
AudioSystem.getMixer(mi).close();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue