comparison graal/com.oracle.max.base/src/com/sun/max/collect/PoolBitSet.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
140 return true; 140 return true;
141 } 141 }
142 142
143 @Override 143 @Override
144 public PoolSet<T> clone() { 144 public PoolSet<T> clone() {
145 return new PoolBitSet<T>(this); 145 return new PoolBitSet<>(this);
146 } 146 }
147 147
148 /** 148 /**
149 * Gets an iterator over all the values in this set. 149 * Gets an iterator over all the values in this set.
150 */ 150 */