Restore inherited 'throws Exception' to doStop overrides to ease subclassing
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@402 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
597903c512
commit
ce676c1c9e
|
@ -76,6 +76,7 @@ public class FilterHolder extends Holder
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
public void doStop()
|
||||
throws Exception
|
||||
{
|
||||
if (_filter!=null)
|
||||
{
|
||||
|
|
|
@ -85,6 +85,7 @@ public class Holder extends AbstractLifeCycle
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
public void doStop()
|
||||
throws Exception
|
||||
{
|
||||
if (!_extInstance)
|
||||
_class=null;
|
||||
|
|
|
@ -216,7 +216,7 @@ public class ServletHolder extends Holder implements UserIdentity.Scope, Compara
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
public void doStart()
|
||||
throws Exception
|
||||
throws Exception
|
||||
{
|
||||
_unavailable=0;
|
||||
try
|
||||
|
@ -256,6 +256,7 @@ public class ServletHolder extends Holder implements UserIdentity.Scope, Compara
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
public void doStop()
|
||||
throws Exception
|
||||
{
|
||||
Object old_run_as = null;
|
||||
if (_servlet!=null)
|
||||
|
|
Loading…
Reference in New Issue