(Event e)
| 13 | } |
| 14 | |
| 15 | @Override |
| 16 | public void accept(Event e) { |
| 17 | while (events.size() > 19) |
| 18 | events.remove(0); |
| 19 | if (!(e instanceof EventFrame || e instanceof EventFrameSkija)) { |
| 20 | events.add(e); |
| 21 | window.requestFrame(); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | @Override |
| 26 | public void paintImpl(Canvas canvas, int width, int height, float scale) { |
nothing calls this directly
no test coverage detected