now that bug 317231 is fixed, we can support the default attribute in the <Property> instead of overriding it with some hardcodded values.

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2038 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Hugues Malphettes 2010-06-22 17:15:41 +00:00
parent ca3ad1b7d5
commit 351feb4edc
1 changed files with 3 additions and 3 deletions

View File

@ -311,9 +311,9 @@ public class WebappRegistrationHelper
{
properties.put("jetty.home",jettyHome);
}
properties.put("jetty.host",System.getProperty("jetty.host",""));
properties.put("jetty.port",System.getProperty("jetty.port","8080"));
properties.put("jetty.port.ssl",System.getProperty("jetty.port.ssl","8443"));
properties.put("jetty.host",System.getProperty("jetty.host"));
properties.put("jetty.port",System.getProperty("jetty.port"));
properties.put("jetty.port.ssl",System.getProperty("jetty.port.ssl"));
while (tokenizer.hasMoreTokens())
{