()
| 24 | private static UniqueID instance; |
| 25 | |
| 26 | public static UniqueID getInstance() throws Exception { |
| 27 | if (instance == null) { |
| 28 | |
| 29 | instance = new UniqueID(); |
| 30 | } |
| 31 | return instance; |
| 32 | } |
| 33 | |
| 34 | private long lastId = 0; |
| 35 |
no outgoing calls
no test coverage detected