Fixed setDisposeNormally() ignoring the argument
Calling ManagerFrame.setDisposeNormally() would always set the `disposeNormally` variable to false, regardless of the argument value.
This commit is contained in:
parent
19233266d0
commit
d89e53656e
1 changed files with 1 additions and 1 deletions
|
@ -1065,7 +1065,7 @@ public class ManagerFrame extends JFrame implements ActionListener, ModsScanObse
|
||||||
* Set this to false before an abnormal exit.
|
* Set this to false before an abnormal exit.
|
||||||
*/
|
*/
|
||||||
public void setDisposeNormally( boolean b ) {
|
public void setDisposeNormally( boolean b ) {
|
||||||
disposeNormally = false;
|
disposeNormally = b;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue