remove useless imports

This commit is contained in:
Till Schnell 2021-04-08 18:31:14 +02:00
parent 572f41ffd4
commit 6fcbca1187
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import java.lang.Integer;
class TestClassWildcardsMap
{
public Map<Integer, Object> test4(Map<Integer, String> input){
public Map<Integer, Object> test(Map<Integer, String> input){
Map<Integer, Object> listOfObjects = input;
return listOfObjects;
}

View File

@ -8,7 +8,7 @@ import java.lang.Integer;
class TestClassWildcardsNested
{
public List<Collection<Object>> test3(List<List<String>> input){
public List<Collection<Object>> test(List<List<String>> input){
List<Collection<Object>> listOfObjects = input;
return listOfObjects;
}