Fix testdata for abstract method implementing intention
This commit is contained in:
+2
-2
@@ -7,7 +7,7 @@ abstract class X<S> implements T<S> {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFoo(S s) {
|
||||
public void setFoo(S foo) {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -44,7 +44,7 @@ class W implements T<Integer> {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFoo(Integer integer) {
|
||||
public void setFoo(Integer foo) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user