-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up Report management #611
Conversation
Signed-off-by: Ayoub LABIDI <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code: 1 remark
tests : on going
List<Report> subReporters = List.of(reportService.getReport(reportUuid, nodeUuid.toString(), severityLevels)); | ||
return subReporters.isEmpty() ? subReporters : List.of(subReporters.get(subReporters.size() - 1)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
List<Report> subReporters = List.of(reportService.getReport(reportUuid, nodeUuid.toString(), severityLevels)); | |
return subReporters.isEmpty() ? subReporters : List.of(subReporters.get(subReporters.size() - 1)); | |
return List.of(reportService.getReport(reportUuid, nodeUuid.toString(), severityLevels)); |
can be simplified
bdf361b
to
24787d8
Compare
Signed-off-by: Ayoub LABIDI <[email protected]>
Signed-off-by: Ayoub LABIDI <[email protected]>
Signed-off-by: Ayoub LABIDI <[email protected]>
1ae53c6
to
3421f31
Compare
Signed-off-by: Ayoub LABIDI <[email protected]>
Signed-off-by: Ayoub LABIDI <[email protected]>
Quality Gate passedIssues Measures |
Signed-off-by: Ayoub LABIDI <[email protected]>
aa078c8
to
0a791da
Compare
Signed-off-by: Ayoub LABIDI <[email protected]>
d26af43
to
f4bd532
Compare
src/main/java/org/gridsuite/study/server/service/StudyService.java
Outdated
Show resolved
Hide resolved
src/main/java/org/gridsuite/study/server/service/StudyService.java
Outdated
Show resolved
Hide resolved
src/main/java/org/gridsuite/study/server/service/StudyService.java
Outdated
Show resolved
Hide resolved
src/main/java/org/gridsuite/study/server/service/StudyService.java
Outdated
Show resolved
Hide resolved
src/main/java/org/gridsuite/study/server/service/NetworkModificationTreeService.java
Outdated
Show resolved
Hide resolved
...idsuite/study/server/networkmodificationtree/NetworkModificationNodeInfoRepositoryProxy.java
Outdated
Show resolved
Hide resolved
src/main/java/org/gridsuite/study/server/service/NetworkModificationTreeService.java
Outdated
Show resolved
Hide resolved
src/main/java/org/gridsuite/study/server/service/NetworkModificationTreeService.java
Outdated
Show resolved
Hide resolved
src/main/java/org/gridsuite/study/server/service/NetworkModificationTreeService.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Ayoub LABIDI <[email protected]>
Quality Gate passedIssues Measures |
No description provided.