From 791a2749886f02ec7b8db25bf8862e8269b96da5 Mon Sep 17 00:00:00 2001 From: Harvey Harrison Date: Thu, 17 Oct 2013 21:06:56 -0700 Subject: gluegen: remove trailing whitespace Signed-off-by: Harvey Harrison --- src/java/com/jogamp/common/util/ArrayHashSet.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/java/com/jogamp/common/util/ArrayHashSet.java') diff --git a/src/java/com/jogamp/common/util/ArrayHashSet.java b/src/java/com/jogamp/common/util/ArrayHashSet.java index ed3590a..a125580 100644 --- a/src/java/com/jogamp/common/util/ArrayHashSet.java +++ b/src/java/com/jogamp/common/util/ArrayHashSet.java @@ -35,7 +35,7 @@ import java.util.Iterator; import java.util.List; import java.util.ListIterator; -/** +/** * Hashed ArrayList implementation of the List and Collection interface. * * Implementation properties are: @@ -80,12 +80,12 @@ public class ArrayHashSet map = new HashMap(initialCapacity); data = new ArrayList(initialCapacity); } - + public ArrayHashSet(int initialCapacity, float loadFactor) { map = new HashMap(initialCapacity, loadFactor); data = new ArrayList(initialCapacity); } - + // // Cloneable // @@ -102,15 +102,15 @@ public class ArrayHashSet return newObj; } - + /** Returns this object ordered ArrayList. Use w/ care, it's not a copy. */ public final ArrayList getData() { return data; } /** Returns this object hash map. Use w/ care, it's not a copy. */ public final HashMap getMap() { return map; } - + @Override public final String toString() { return data.toString(); } - + // // Collection // @@ -408,7 +408,7 @@ public class ArrayHashSet * Identity method allowing to get the identical object, using the internal hash map. *
* This is an O(1) operation. - * + * * @param key hash source to find the identical Object within this list * @return object from this list, identical to the given key hash code, * or null if not contained -- cgit v1.2.3