moved counted object to utils
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@93 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
e09af2ef70
commit
875272e5c5
|
|
@ -1,4 +1,4 @@
|
|||
package org.broadinstitute.sting.indels;
|
||||
package org.broadinstitute.sting.utils;
|
||||
|
||||
/** Utility class that makes working with counted objects slightly easier (and faster).
|
||||
* Consider a "generic" counter representation as Map<Object,Integer>: updating the counter would require
|
||||
|
|
@ -1,4 +1,6 @@
|
|||
package org.broadinstitute.sting.indels;
|
||||
package org.broadinstitute.sting.utils;
|
||||
|
||||
import org.broadinstitute.sting.utils.CountedObject;
|
||||
|
||||
/** Support class for counted objects. This comparator is an adapter: it is initialized with an arbitrary
|
||||
* comparator for objects of type T and can be used to directly compare counted objects of type CountedObject<T>
|
||||
Loading…
Reference in New Issue