|
@@ -154,7 +154,7 @@ public class ClassGroupStudentMapperServiceImpl extends BaseServiceImpl<Long, Cl
|
|
|
while (iterator.hasNext()) {
|
|
|
String userIdStr = iterator.next();
|
|
|
List<ClassGroupStudentMapper> highClassGroupHasUser = classGroupStudentMapperDao.findHighClassGroupHasUser(classGroup.getMusicGroupId(), Integer.parseInt(userIdStr), classGroup.getType());
|
|
|
- if (highClassGroupHasUser != null && highClassGroupHasUser.size() >= 0) {
|
|
|
+ if (highClassGroupHasUser != null && highClassGroupHasUser.size() > 0) {
|
|
|
iterator.remove();
|
|
|
continue;
|
|
|
}
|