Author: toad
Date: 2006-11-13 21:24:13 +0000 (Mon, 13 Nov 2006)
New Revision: 10912

Modified:
   trunk/freenet/src/freenet/support/SortedLongSet.java
Log:
Missing file.

Modified: trunk/freenet/src/freenet/support/SortedLongSet.java
===================================================================
--- trunk/freenet/src/freenet/support/SortedLongSet.java        2006-11-13 
21:22:58 UTC (rev 10911)
+++ trunk/freenet/src/freenet/support/SortedLongSet.java        2006-11-13 
21:24:13 UTC (rev 10912)
@@ -120,4 +120,10 @@
                length = 0;
        }

+       public long[] toArray() {
+               long[] output = new long[length];
+               System.arraycopy(data, 0, output, 0, length);
+               return output;
+       }
+
 }


Reply via email to