initialize booleans in test exchange

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2937 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Jesse McConnell 2011-03-30 15:36:25 +00:00
parent 5febe18d52
commit 6d4ec6a4bc
1 changed files with 2 additions and 2 deletions

View File

@ -385,8 +385,8 @@ public abstract class AbstractHttpExchangeCancelTest extends TestCase
protected static class TestHttpExchange extends ContentExchange
{
private boolean responseCompleted;
private boolean failed;
private boolean expired;
private boolean failed = false;
private boolean expired = false;
protected TestHttpExchange()
{