/**
* @author ishaikh
*
*/
package com.transformuk.bdt.util;
import java.util.Comparator;
import com.transformuk.bdt.model.OtherSources;
public class OtherSourcesComparator implements Comparator<OtherSources> {
@Override
public int compare(OtherSources o1, OtherSources o2) {
return o2.getScore().compareTo(o1.getScore());
}
}