summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-04-19 17:00:48 +0000
committerMark Spruiell <mes@zeroc.com>2006-04-19 17:00:48 +0000
commitcae25e6581582f0a464693b585ec3aa449cb85fe (patch)
tree0103a11a1d72183585c3b155499fc810089a9602
parentFixed windows compilation (diff)
downloadice-cae25e6581582f0a464693b585ec3aa449cb85fe.tar.bz2
ice-cae25e6581582f0a464693b585ec3aa449cb85fe.tar.xz
ice-cae25e6581582f0a464693b585ec3aa449cb85fe.zip
removing support for old properties
-rw-r--r--java/src/IceSSL/Context.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/java/src/IceSSL/Context.java b/java/src/IceSSL/Context.java
index 79ff636565b..1eaa2f881a2 100644
--- a/java/src/IceSSL/Context.java
+++ b/java/src/IceSSL/Context.java
@@ -68,15 +68,12 @@ class Context
//
// The truststore holds the certificates of trusted CAs.
//
- Ice.StringHolder truststorePath = new Ice.StringHolder(
- properties.getPropertyWithDefault(prefix + "Truststore", properties.getProperty(prefix + "Certs")));
+ Ice.StringHolder truststorePath = new Ice.StringHolder(properties.getProperty(prefix + "Truststore"));
//
// The password for the truststore.
//
- final String truststorePassword =
- properties.getPropertyWithDefault(prefix + "TruststorePassword",
- properties.getProperty(prefix + "CertsPassword"));
+ final String truststorePassword = properties.getProperty(prefix + "TruststorePassword");
//
// The truststore type defaults to "JKS", but it can also be "PKCS12".