(long seed)
| 9 | private static Random random = new Random(); |
| 10 | |
| 11 | public static void setSeed(long seed) { |
| 12 | random.setSeed(seed); |
| 13 | } |
| 14 | |
| 15 | public static long hash64(long x, long seed) { |
| 16 | x += seed; |
nothing calls this directly
no outgoing calls
no test coverage detected