updates everything in the internalScene. This is the main entry point for performing a complete update cycle.
()
| 206 | * updates everything in the internalScene. This is the main entry point for performing a complete update cycle. |
| 207 | */ |
| 208 | public void updateAll() { |
| 209 | update(new ArrayDeque<Pair<Integer, Callable<Boolean>>>()); |
| 210 | } |
| 211 | |
| 212 | protected boolean update(int midpoint, Callable<Boolean> middle) { |
| 213 | return update(new ArrayDeque<>(Arrays.asList(new Pair<Integer, Callable<Boolean>>(midpoint, middle)))); |
no test coverage detected