|
@@ -49,10 +49,6 @@ public class RankItem implements Comparable<RankItem> {
|
|
|
private Map<String, Double> rankerScore = Maps.newHashMap();
|
|
|
private Map<String, Integer> rankerIndex = Maps.newHashMap();
|
|
|
|
|
|
- public RankItem() {
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
|
|
|
public RankItem(Video video) {
|
|
|
this.id = String.valueOf(video.getVideoId());
|
|
@@ -69,17 +65,6 @@ public class RankItem implements Comparable<RankItem> {
|
|
|
this.score = 0.0;
|
|
|
}
|
|
|
|
|
|
- public RankItem(RankItem other) {
|
|
|
- this.id = other.id;
|
|
|
- this.videoId = other.videoId;
|
|
|
- this.score = other.score;
|
|
|
- this.scoreRos = other.scoreRos;
|
|
|
- this.scoreStr = other.scoreStr;
|
|
|
- this.video = other.video;
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
@Override
|
|
|
public int compareTo(RankItem o) {
|
|
|
if (o == null) {
|