Skip to content

Commit

Permalink
Removed unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpullano committed Apr 8, 2012
1 parent 98452ea commit 0b32cc8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion rpc/RpcServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public void run() {
byte[] inBuf = new byte[RpcMessage.BUFFER_SIZE];
DatagramPacket recvPkt = new DatagramPacket(inBuf, inBuf.length);
rpcSocket.receive(recvPkt);
IPP recvIPP = new IPP(recvPkt.getAddress(), recvPkt.getPort());

InetAddress returnAddr = recvPkt.getAddress();
int returnPort = recvPkt.getPort();
Expand Down

0 comments on commit 0b32cc8

Please sign in to comment.