Fix formatting

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@52 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-05-01 19:14:55 +02:00
parent 5436407515
commit b2dbfcc317
22 changed files with 483 additions and 427 deletions

View file

@ -64,8 +64,9 @@ public class Event2Test {
assertEquals(fired3, -5);
assertEquals(fired4, -10);
}
@Test public void removeListener() {
@Test
public void removeListener() {
fired = 0;
fired2 = 0;
Event2<Integer, Integer> testEvent = new Event2<Integer, Integer>();
@ -78,7 +79,7 @@ public class Event2Test {
}
});
IListener2<Integer, Integer> rem = new IListener2<Integer, Integer>() {
@Override
public void fire(Integer n, Integer m) {
fail();