Skip to content

Commit 05a0b67

Browse files
EFRS-1348: Fixed conflicts
1 parent 2b8b74e commit 05a0b67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

java/admin/src/main/java/com/exadel/frs/service/StatisticService.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import static org.apache.commons.lang3.Range.between;
55
import static org.apache.commons.lang3.StringUtils.isNotBlank;
66
import com.exadel.frs.commonservice.entity.InstallInfo;
7-
import com.exadel.frs.commonservice.entity.ModelSubjectProjection;
7+
import com.exadel.frs.commonservice.projection.ModelSubjectProjection;
88
import com.exadel.frs.commonservice.entity.User;
99
import com.exadel.frs.commonservice.exception.ApperyServiceException;
1010
import com.exadel.frs.commonservice.repository.InstallInfoRepository;
@@ -78,8 +78,8 @@ private List<StatisticsFacesEntity> createStatistics(String installInfoGuid, Lis
7878
private StatisticsFacesEntity createStatistic(String installInfoGuid, ModelSubjectProjection subjectCount) {
7979
return new StatisticsFacesEntity(
8080
installInfoGuid,
81-
subjectCount.getGuid(),
82-
getSubjectRange(subjectCount.getSubjectCount())
81+
subjectCount.guid(),
82+
getSubjectRange(subjectCount.subjectCount())
8383
);
8484
}
8585

0 commit comments

Comments
 (0)