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:
parent
5b42ae8fd0
commit
552385da13
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue