(boolean restore)
| 36 | private PropertyChangeSupport changes = new PropertyChangeSupport(this); |
| 37 | |
| 38 | public static Packets getInstance(boolean restore) throws Exception { |
| 39 | if (instance == null) { |
| 40 | |
| 41 | instance = new Packets(restore); |
| 42 | } |
| 43 | return instance; |
| 44 | } |
| 45 | |
| 46 | public static Packets getInstance() throws Exception { |
| 47 | if (instance == null) { |
no outgoing calls
no test coverage detected