--- svn.acqlite.AcqliteCore.components.collection.src.main.java.org.limewire.collection.IntSet.java	Mon Aug 10 15:42:07 2009
+++ svn.phex.phex.trunk.src.main.java.phex.common.collections.IntSet.java	Mon Aug 10 15:41:36 2009
@@ -1,5 +1,29 @@
-package org.limewire.collection;
+/*
+ *  PHEX - The pure-java Gnutella-servent.
+ *  Copyright (C) 2001 - 2007 Phex Development Group
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * 
+ *  --- CVS Information ---
+ *  $Id: IntSet.java 4229 2008-07-13 21:42:10Z gregork $
+ */
+package phex.common.collections;
 
+//Modified version (1.3 2007-06-11 15:37:09) of /java/org/limewire/collection/IntSet.java
+//Copyright by Limewire
+
 import java.util.ArrayList;
 import java.util.List;
 import java.util.NoSuchElementException;
@@ -84,7 +108,6 @@
             this.high=singleton;
         }
 
-        @Override
         public String toString() {
             if (low==high)
                 return String.valueOf(low);
@@ -309,7 +332,7 @@
         for (IntSetIterator iter = this.iterator(); iter.hasNext(); ) {
             int x = iter.next();
             if (! s.contains(x))
-                removeList.add(new Integer(x));
+                removeList.add(Integer.valueOf(x));
         }
         //It's marginally more efficient to remove items from end to beginning.
         for (int i=removeList.size()-1; i>=0; i--) {
@@ -377,8 +400,7 @@
     }
 
 
-    @Override
     public String toString() {
         return list.toString();
     }
-}
+}