mirror of
https://github.com/angryip/ipscan.git
synced 2025-10-26 11:18:17 +00:00
ignore already disposed exception (from GA)
This commit is contained in:
parent
e47ba85c89
commit
3bc2360a3c
@ -76,7 +76,10 @@ public class GUI implements AutoCloseable {
|
||||
}
|
||||
|
||||
@Override public void close() {
|
||||
display.dispose();
|
||||
try {
|
||||
display.dispose();
|
||||
}
|
||||
catch (SWTException ignore) {}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user