Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gluegen: remove trailing whitespace | Harvey Harrison | 2013-10-17 | 1 | -7/+7 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | ArrayHashSet: Use final local vars if applicable | Sven Gothel | 2013-10-17 | 1 | -7/+7 |
| | |||||
* | ArrayHashSet: Add @Override | Sven Gothel | 2013-10-17 | 1 | -0/+27 |
| | |||||
* | gluegen: use enhanced for-loops in ArrayHashSet | Harvey Harrison | 2013-04-03 | 1 | -10/+9 |
| | | | | | | | | | | | | Fixes an infinite loop in addAll due to the following line: mod = mod || add(iter.next()) ; After the first successful add, mod will be true and thereafter iter.next will never be called again, due to || shortcutting. the loop will then run forever as any further elements will never be taken from the iterator, so hasNext will always be true. Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | gluegen: use explicit ArrayList constructor to avoid @SuppressWarnings and ↵ | Harvey Harrison | 2013-04-03 | 1 | -4/+2 |
| | | | | | | | | | clone() ArrayList.clone does _not_ make a shallow copy, a new internal array is allocated. As such, there is nearly no benefit to using clone(). Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | ArrayHashSet: Add ctor w/ initialCapacity and (initialCapacity, loadFactor) | Sven Gothel | 2013-04-01 | 1 | -4/+24 |
| | |||||
* | ArrayHashSet: Add Java Generics Syntax | Sven Gothel | 2011-08-24 | 1 | -37/+34 |
| | |||||
* | cleanup imports | Sven Gothel | 2011-02-26 | 1 | -0/+2 |
| | |||||
* | Adding 'containsSafe' .. allowing verification of hash code | Sven Gothel | 2010-11-05 | 1 | -2/+18 |
| | |||||
* | ArrayHashSet: List toList() -> ArrayList toArrayList() | Sven Gothel | 2010-10-26 | 1 | -7/+11 |
| | |||||
* | ArrayHashSet: Add 'getOrAdd(key)' identity method to conveniently get the ↵ | Sven Gothel | 2010-10-23 | 1 | -5/+28 |
| | | | | identity or add it, if not exist yet | ||||
* | New jogamp.common.util.ArrayHashSet, providing O(1) queries/add and identity ↵ | Sven Gothel | 2010-10-23 | 1 | -0/+372 |
operations |