Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/TestServerController.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/TestServerController.java11
1 files changed, 3 insertions, 8 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/TestServerController.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/TestServerController.java
index a7ce95417..621716753 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/TestServerController.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/TestServerController.java
@@ -154,15 +154,10 @@ public class TestServerController {
}
/**
- * No need to implement
+ * Not used
*/
- public Certificate[] showCertificates(Certificate[][] certificates) {
- return null;
- }
-
- public boolean promptForUnsignedContent(String[] details) {
- return true;
+ public TrustInfo getTrustInfo(Certificate[][] untrustedChain, String[] unsignedDetail) {
+ return new TrustInfo(null, false, true);
}
-
}
} \ No newline at end of file

Back to the top