Skip to content

Commit

Permalink
add Act that does nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
thoutbeckers committed Jun 26, 2014
1 parent 8b34a38 commit af9f452
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions When/src/main/java/houtbecke/rs/when/act/DoNothing.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package houtbecke.rs.when.act;

import houtbecke.rs.when.Act;

public class DoNothing implements Act {
@Override
public void act(Object... things) {
// do nothing :)
}
}

0 comments on commit af9f452

Please sign in to comment.