Implemented TCP streams for object serialization
[WeStealzYourDataz.git] / src / uk / ac / ntu / n0521366 / wsyd / libs / net / WSYD_SocketAddress.java
index 70adf4b..e66d60a 100644 (file)
@@ -63,7 +63,7 @@ public class WSYD_SocketAddress implements java.io.Serializable {
             throw new IllegalArgumentException(MessageFormat.format("Not a correct dotted decimal notation: {0}", ipv4));
         
         int i = 0;
-        for (int index = 0; index <=3; index++) {
+        for (int index = 0; index <= 3; index++) {
             try {
                 i = Integer.parseInt(elements[index]);
             } catch (NumberFormatException e) {