private static boolean deduplication(List list) {
Set s = new HashSet(list);
if (s.size()==1) {
return true;
}else {
return false;
}
}
private static boolean deduplication(List list) {
Set s = new HashSet(list);
if (s.size()==1) {
return true;
}else {
return false;
}
}