Updating random walkers to new rod system; removing unused GenotypeAndValidateWalker

This commit is contained in:
Eric Banks 2011-08-15 14:05:23 -04:00
parent fc2c21433b
commit 045e8a045e
1 changed files with 0 additions and 4 deletions

View File

@ -333,10 +333,6 @@ public class RefMetaDataTracker {
return addValues(name, type, new ArrayList<T>(), getTrackDataByName(name), onlyAtThisLoc, true, false);
}
@Deprecated
public <T extends Feature> List<T> getValues(final Class<T> type, final Collection<String> names, final GenomeLoc onlyAtThisLoc) {
return addValues(names, type, new ArrayList<T>(), onlyAtThisLoc, true, false);
}
@Deprecated
public <T extends Feature> T getFirstValue(final Class<T> type, final String name) {
return safeGetFirst(getValues(type, name));
}