292800 - ContextDeployer - recursive setting is undone by FilenameFilter

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1346 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Jan Bartel 2010-03-05 13:42:18 +00:00
parent 2b21975ab1
commit fce49f7804
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@ jetty-7.0.2-SNAPSHOT
+ JSON parses NaN as null
+ 290765 Reset input for HttpExchange retry.
+ 292799 WebAppDeployer - start a started context?
+ 292800 ContextDeployer - recursive setting is undone by FilenameFilter
+ 294799 when configuring a webapp, don't look for WEB-INF/jetty6-web.xml
+ 296569 removeLifeCycleListener() has no effect
+ 296765 JMX Connector Server and ShutdownThread

View File

@ -393,11 +393,11 @@ public class ContextDeployer extends AbstractLifeCycle
{
try
{
if (name.endsWith(".xml")&&dir.equals(getConfigurationDir().getFile()))
if (name.endsWith(".xml"))
return true;
return false;
}
catch (IOException e)
catch (Exception e)
{
Log.warn(e);
return false;