()
| 42 | private PropertyChangeSupport changes = new PropertyChangeSupport(this); |
| 43 | |
| 44 | public static Database getInstance() throws Exception { |
| 45 | if (instance == null) { |
| 46 | |
| 47 | instance = new Database(); |
| 48 | } |
| 49 | return instance; |
| 50 | } |
| 51 | |
| 52 | private static int ALERT_DB_FILE_SIZE_MB = 1536;// 1.5GB (LIMIT = 2GB) |
| 53 | private Path databaseDir = Paths.get(System.getProperty("user.home") + "/.packetproxy/db");// FileSystems.getDefault().getPath("db"); |
no outgoing calls
no test coverage detected