Add a first version of the check for incorrect method signature

This commit is contained in:
Rick Ossendrijver
2021-03-22 16:51:00 +01:00
parent a1b92ef92a
commit 0d98178fc8

View File

@@ -67,8 +67,8 @@ final class ImmutableListTemplates {
}
@AfterTemplate
ImmutableList<T> after(T element) {
return ImmutableList.of(element);
ImmutableList<T> after(T secondName) {
return ImmutableList.of(secondName);
}
}