(Object... msg)
| 19 | } |
| 20 | |
| 21 | public static void log(Object... msg) { |
| 22 | if (verbose) |
| 23 | System.out.println(Arrays.stream(msg).map(Object::toString).collect(Collectors.joining(" "))); |
| 24 | } |
| 25 | |
| 26 | public long window = -1; |
| 27 | public float scale = 1f; |
no outgoing calls
no test coverage detected