()
| 126 | } |
| 127 | |
| 128 | private static void trim1() { |
| 129 | if (log.size() > maxLogSize * 2) { |
| 130 | log = new ArrayList<>(log.subList(maxLogSize, log.size())); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | static public <T> void setTo(Box b, Dict.Prop<T> what, T value) { |
| 135 | T was = b.properties.get(what); |
no test coverage detected