Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / ClassLibrary / Vector.java
index 2a32e897ed8b335036adcc5f7a21eab45feeba5a..df991ef8c6db7ef1ee038957fde8a3984657fe28 100644 (file)
@@ -14,7 +14,7 @@ public class Vector {
     this.size=0;
     array=new Object[size];
   }
-  
+
   //used for internal cloning
   private Vector(int size, int capacityIncrement, Object[] array) {
     this.size = size;
@@ -22,7 +22,7 @@ public class Vector {
     this.array = new Object[array.length];
     System.arraycopy(array, 0, this.array, 0, size);
   }
-  
+
   public Vector clone() {
     return new Vector(size,capacityIncrement, array);
   }
@@ -58,7 +58,7 @@ public class Vector {
       removeElementAt(in);
       return true;
     }
-    
+
     return false;
   }