Skip to content
Snippets Groups Projects
Commit 9de7b6c9 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

fix needless initialization causing warnings

parent c884c4fc
No related branches found
No related tags found
No related merge requests found
...@@ -17,8 +17,8 @@ public class PduReceiver ...@@ -17,8 +17,8 @@ public class PduReceiver
public static void main(String args[]) public static void main(String args[])
{ {
PduFactory factory; PduFactory factory;
MulticastSocket socket = null; MulticastSocket socket;
InetAddress address = null; InetAddress address;
DatagramPacket packet; DatagramPacket packet;
try try
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment