| win.add(5, new Message());
System.out.println("win: " + win);
check(win, 0, 10, 0);
while((win.remove()) != null) ;
check(win, 0, 10, 10);
win.stable(5);
System.out.println("win: " + win);
check(win, 5, 10, 10);
win.stable(10);
System.out.println("win: " + win);
check(win, 10, 10, 10);
|