()
| 364 | } |
| 365 | |
| 366 | public static String getThreadIdentifier() { |
| 367 | Thread currentThread = Thread.currentThread(); |
| 368 | return currentThread.getThreadGroup() |
| 369 | + "_" |
| 370 | + currentThread.getName() |
| 371 | + "_" |
| 372 | + currentThread.getId(); |
| 373 | } |
| 374 | } |
no test coverage detected