File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/main/java/de/rub/nds/tlsscanner/trust Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 40
40
<dependency >
41
41
<groupId >com.fasterxml.jackson.core</groupId >
42
42
<artifactId >jackson-databind</artifactId >
43
- <version >2.9.9 </version >
43
+ <version >2.9.8 </version >
44
44
<type >jar</type >
45
45
</dependency >
46
46
<dependency >
47
47
<groupId >com.fasterxml.jackson.dataformat</groupId >
48
48
<artifactId >jackson-dataformat-yaml</artifactId >
49
- <version >2.9.9 </version >
49
+ <version >2.9.8 </version >
50
50
</dependency >
51
51
<dependency >
52
52
<groupId >org.apache.commons</groupId >
Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ public static synchronized TrustAnchorManager getInstance() {
57
57
}
58
58
59
59
private TrustAnchorManager () {
60
+ trustPlatformList = new LinkedList <>();
60
61
try {
61
- trustPlatformList = new LinkedList <>();
62
62
trustPlatformList .add (readPlatform ("google_aosp.yaml" ));
63
63
trustPlatformList .add (readPlatform ("microsoft_windows.yaml" ));
64
64
trustPlatformList .add (readPlatform ("mozilla_nss.yaml" ));
@@ -67,7 +67,6 @@ private TrustAnchorManager() {
67
67
trustPlatformList .add (readPlatform ("apple_ios.yaml" ));
68
68
trustPlatformList .add (readPlatform ("apple_macos.yaml" ));
69
69
} catch (IOException ex ) {
70
- ex .printStackTrace ();
71
70
LOGGER .error ("Could not load trusted platforms" , ex );
72
71
}
73
72
trustAnchors = new HashMap <>();
You can’t perform that action at this time.
0 commit comments