SEC-2858: Add ANY_MESSAGE.toString()
This commit is contained in:
parent
c4fe630f8e
commit
6149f179c2
|
@ -39,5 +39,9 @@ public interface MessageMatcher<T> {
|
||||||
public boolean matches(Message<? extends Object> message) {
|
public boolean matches(Message<? extends Object> message) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
|
return "ANY_MESSAGE";
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue