()
| 43 | private static Stats instance; |
| 44 | |
| 45 | public static Stats getInstance(){ |
| 46 | if (instance==null) { |
| 47 | instance=new Stats(); |
| 48 | instance.loadFromStorage(); |
| 49 | } |
| 50 | return instance; |
| 51 | } |
| 52 | |
| 53 | public long getLatest(){ |
| 54 | return latestTraffic; |
no test coverage detected