remove useless imports
This commit is contained in:
parent
572f41ffd4
commit
6fcbca1187
@ -6,7 +6,7 @@ import java.lang.Integer;
|
|||||||
class TestClassWildcardsMap
|
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;
|
Map<Integer, Object> listOfObjects = input;
|
||||||
return listOfObjects;
|
return listOfObjects;
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ import java.lang.Integer;
|
|||||||
|
|
||||||
class TestClassWildcardsNested
|
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;
|
List<Collection<Object>> listOfObjects = input;
|
||||||
return listOfObjects;
|
return listOfObjects;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user