checkstyleparent27#201
Conversation
jonenst
commented
May 29, 2026
- parent27
- Checkstyle parent27 mostly cosmetic changes (opus4.6 assisted)
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
💤 Files with no reviewable changes (1)
📝 WalkthroughWalkthroughBumps the Maven parent POM to 28, reorganizes import blocks across multiple server/entity/repository files, adds an ChangesImport Standardization and ExpertFilterRepository Introduction
Suggested reviewers
🚥 Pre-merge checks | ✅ 3 | ❌ 2❌ Failed checks (1 warning, 1 inconclusive)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Signed-off-by: HARPER Jon <[email protected]>
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@src/test/java/org/gridsuite/filter/server/FilterEntityControllerTest.java`:
- Around line 188-189: The assertions that iterate destinations
(destinations.forEach(... assertNull(... output.receive(...)))) can throw and
prevent output.clear() from running; wrap the assertion loop in a try-finally so
output.clear() is executed in the finally block. Specifically, enclose the
destinations.forEach(... assertNull(... output.receive(...))) invocation in a
try and move output.clear() into the corresponding finally to guarantee cleanup
of queues even if assertNull fails; reference the destinations.forEach lambda,
assertNull, output.receive(TIMEOUT, destination) and output.clear() when
applying the change.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 158ecdf3-a0f2-4589-94c6-df9ef9ba68fa
📒 Files selected for processing (12)
pom.xmlsrc/main/java/org/gridsuite/filter/server/FilterService.javasrc/main/java/org/gridsuite/filter/server/NotificationService.javasrc/main/java/org/gridsuite/filter/server/entities/AbstractFilterEntity.javasrc/main/java/org/gridsuite/filter/server/entities/identifierlistfilter/IdentifierListFilterEquipmentEntity.javasrc/main/java/org/gridsuite/filter/server/migrations/MigrateEquipmentFiltersToExpertFilters.javasrc/main/java/org/gridsuite/filter/server/repositories/expertfilter/ExpertFilterRepository.javasrc/main/java/org/gridsuite/filter/server/repositories/proxies/AbstractFilterRepositoryProxy.javasrc/main/java/org/gridsuite/filter/server/repositories/proxies/expertfiler/ExpertFilterRepositoryProxy.javasrc/main/java/org/gridsuite/filter/server/repositories/proxies/identifierlistfilter/IdentifierListFilterRepositoryProxy.javasrc/test/java/org/gridsuite/filter/server/FilterEntityControllerTest.javasrc/test/java/org/gridsuite/filter/server/SupervisionControllerTest.java
💤 Files with no reviewable changes (2)
- src/main/java/org/gridsuite/filter/server/repositories/expertfilter/ExpertFilterRepository.java
- src/test/java/org/gridsuite/filter/server/SupervisionControllerTest.java
adcf9d2 to
d45c8d4
Compare
|



