()
| 725 | } |
| 726 | |
| 727 | private static TDeserializer getDes() { |
| 728 | try { |
| 729 | TDeserializer des = threadDes.get(); |
| 730 | if (des == null) { |
| 731 | des = new TDeserializer(); |
| 732 | threadDes.set(des); |
| 733 | } |
| 734 | return des; |
| 735 | } catch (Exception e) { |
| 736 | throw new RuntimeException(e); |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | public static void sleepNoSimulation(long millis) { |
| 741 | try { |
no test coverage detected