1
0
mirror of synced 2026-05-22 21:33:16 +00:00

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