Remove redundant assignment

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@652196 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2008-04-30 00:15:21 +00:00
parent 5b42ae8fd0
commit 552385da13
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public class EchoHandler
// For some reason, just putting the incoming entity into
// the response will not work. We have to buffer the message.
byte[] data = null;
byte[] data;
if (entity == null) {
data = new byte [0];
} else {