|
@@ -260,6 +260,9 @@ public class RankStrategy4ShareDeepAndWidth extends RankService {
|
|
|
if (videoRtFeatures != null) {
|
|
|
int j = 0;
|
|
|
for (RankItem item : rankItems) {
|
|
|
+ if (j > videoRtFeatures.size() - 1) {
|
|
|
+ break;
|
|
|
+ }
|
|
|
String vF = videoRtFeatures.get(j);
|
|
|
++j;
|
|
|
if (vF == null) {
|
|
@@ -300,6 +303,9 @@ public class RankStrategy4ShareDeepAndWidth extends RankService {
|
|
|
|
|
|
}
|
|
|
for (RankItem item : rankItems) {
|
|
|
+ if (j > videoRtFeatures.size() - 1) {
|
|
|
+ break;
|
|
|
+ }
|
|
|
String vF = videoRtFeatures.get(j);
|
|
|
++j;
|
|
|
if (vF == null) {
|