Skip to content

Commit e31bf61

Browse files
committed
Remove unused
1 parent 7fc6dfa commit e31bf61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/garciat/typeclasses/processor/WitnessResolutionChecker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ default <S> Parser<T, S> flatMap(Parser<R, S> next) {
110110
this.parse(trees, current, input).flatMap(r -> next.parse(trees, current, r));
111111
}
112112

113-
static <T> Parser<MethodInvocationTree, ExpressionTree> unaryMethodCallArgument(Method target) {
113+
static Parser<MethodInvocationTree, ExpressionTree> unaryMethodCallArgument(Method target) {
114114
return (trees, current, input) -> {
115115
if (trees.getElement(current) instanceof ExecutableElement method
116116
&& method.getSimpleName().contentEquals(target.getName())

0 commit comments

Comments
 (0)