private static Matcher EqualTo(T item) { return new IsEqual(item); }
How do I modify the above method definition suc
Maybe implementing a non-generic EqualTo, which takes an Object as the argument type, would solve the issue of rewriting those code lines.