298551 SslSocketConnector does not need keystore stream

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1952 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-06-09 08:20:06 +00:00
parent 12748e0b39
commit 5c53c9ac55
2 changed files with 4 additions and 7 deletions

View File

@ -1,4 +1,5 @@
jetty-7.1.4-SNAPSHOT
+ 298551 SslSocketConnector does not need keystore stream
+ 295715 AbstractSessionManager decoupled from Context
+ 292326 Stop continuations if server is stopped.
+ 292814 Make QoSFilter and DoSFilter JMX manageable

View File

@ -205,14 +205,10 @@ public class SslSocketConnector extends SocketConnector implements SslConnector
try
{
if (keystorePath!=null)
{
keystoreInputStream = Resource.newResource(keystorePath).getInputStream();
keystore=KeyStore.getInstance(keystoreType);
keystore.load(keystoreInputStream,keystorePassword==null?null:keystorePassword.toString().toCharArray());
return keystore;
}
return null;
keystore=KeyStore.getInstance(keystoreType);
keystore.load(keystoreInputStream,keystorePassword==null?null:keystorePassword.toString().toCharArray());
return keystore;
}
finally
{