File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
app/src/main/java/fuzion24/device/vulnerability Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ public class DeviceInfo {
26
26
private final String [] supportedABIS ;
27
27
28
28
29
-
30
29
private final String buildID ;
31
30
32
31
@@ -97,7 +96,6 @@ public static String readKernelVersion() {
97
96
return System .getProperty ("os.version" );
98
97
}
99
98
100
-
101
99
public String getKernelVersion () {
102
100
return kernelVersion ;
103
101
}
Original file line number Diff line number Diff line change 4
4
import android .content .Context ;
5
5
import android .util .Log ;
6
6
7
- import java .lang .reflect .Method ;
8
7
import java .util .ArrayList ;
9
8
import java .util .List ;
10
9
@@ -34,7 +33,7 @@ public class VulnerabilityOrganizer {
34
33
35
34
//TODO: Maybe add dates to each of these and sort chronologically
36
35
public static List <VulnerabilityTest > getTests (Context ctx ){
37
- List <VulnerabilityTest > allTests = new ArrayList <VulnerabilityTest >();
36
+ List <VulnerabilityTest > allTests = new ArrayList <>();
38
37
allTests .add (new ZipBug9950697 ());
39
38
allTests .add (new ZipBug8219321 ());
40
39
allTests .add (new ZipBug9695860 ());
@@ -56,7 +55,7 @@ public static List<VulnerabilityTest> getTests(Context ctx){
56
55
allTests .add (new CVE20151528 ());
57
56
allTests .add (new CVE_2015_6616 ());
58
57
59
- List <VulnerabilityTest > filteredTest = new ArrayList <VulnerabilityTest >();
58
+ List <VulnerabilityTest > filteredTest = new ArrayList <>();
60
59
String cpuArch1 = SystemUtils .propertyGet (ctx , "ro.product.cpu.abi" );
61
60
String cpuArch2 = SystemUtils .propertyGet (ctx , "ro.product.cpu.abi2" );
62
61
You can’t perform that action at this time.
0 commit comments