tweak a comment

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3455 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2009-04-13 21:07:00 +00:00
parent 0b57ebd951
commit 5ceb1f22e0
1 changed files with 1 additions and 5 deletions

View File

@ -49,11 +49,7 @@ public class IntSetUtil {
* This method constructs an appropriate mutable copy of set.
*
* @return a new {@link MutableIntSet} object with the same value as set
* @throws UnimplementedError if (not ( set instanceof com.ibm.wala.util.intset.SparseIntSet ) ) and (not ( set instanceof
* com.ibm.wala.util.intset.BitVectorIntSet ) ) and (not ( set instanceof com.ibm.wala.util.intset.BimodalMutableIntSet
* ) ) and (not ( set instanceof com.ibm.wala.util.intset.DebuggingMutableIntSet ) ) and (not ( set instanceof
* com.ibm.wala.util.intset.SemiSparseMutableIntSet ) ) and (not ( set instanceof
* com.ibm.wala.util.intset.MutableSharedBitVectorIntSet ) )
* @throws UnimplementedError if we haven't supported the set type yet.
* @throws IllegalArgumentException if set == null
*/
public static MutableIntSet makeMutableCopy(IntSet set) throws IllegalArgumentException, UnimplementedError {