blob: c1f03c22d56af1c33550902dbb44922150c565d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package semanticanalysis;
import java.util.ArrayList;
public class Share {
public static <T> ArrayList<T> removeDuplicates(ArrayList<T> list) {
ArrayList<T> newList = new ArrayList<T>();
for (T element : list) {
if (!customContains(newList, element)) {
newList.add(element);
}
}
return newList;
}
public static <T> boolean customContains(ArrayList<T> list, T e) {
String e1 = e.toString();
for (T element : list) {
String e2 = element.toString();
if (e2.equals(e1)) {
return true;
}
}
return false;
}
public static String getExtension(String fileName) {
int extensionIndex = fileName.lastIndexOf('.');
if (extensionIndex == -1) {
return fileName;
} else {
return fileName.substring(extensionIndex + 1);
}
}
}
|