345047 Readded deprecated ScanningAppDeployer#setMonitoredDir
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3102 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
6e197c7ba2
commit
2213919ca5
|
@ -13,6 +13,7 @@ jetty-7.4.1-SNAPSHOT
|
|||
+ 344067 Add support for OSGi fragment bundles to add static resources to web-bundles
|
||||
+ 344513 Attempting to set ConfigurationClasses in jetty-web.xml causes NPE
|
||||
+ 344529 Ability to customize the error handling of the OSGi HttpService
|
||||
+ 345047 Readded deprecated ScanningAppDeployer#setMonitoredDir
|
||||
+ JETTY-954 WebAppContext eats any start exceptions instead of stopping the server load
|
||||
+ JETTY-1314 Handle bad URI encodings
|
||||
+ JETTY-1324 Tested not using CESU-8 instead of UTF-8
|
||||
|
|
|
@ -217,6 +217,15 @@ public abstract class ScanningAppProvider extends AbstractLifeCycle implements A
|
|||
{
|
||||
_scanner.addListener(listener);
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @deprecated Use {@link #setMonitoredDirName(String)}
|
||||
*/
|
||||
public void setMonitoredDir(String dir)
|
||||
{
|
||||
setMonitoredDirName(dir);
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue