SEC-2858: Add ANY_MESSAGE.toString()

This commit is contained in:
Rob Winch 2015-02-12 09:03:58 -06:00
parent c4fe630f8e
commit 6149f179c2
1 changed files with 4 additions and 0 deletions

View File

@ -39,5 +39,9 @@ public interface MessageMatcher<T> {
public boolean matches(Message<? extends Object> message) {
return true;
}
public String toString() {
return "ANY_MESSAGE";
}
};
}