Merged
Conversation
Reviewer's Guide by SourceryThis PR implements three main changes: upgrading from Apache Commons Lang to Lang3 for StringBuilder and ReflectionToStringBuilder usage, updating the Java version from 11 to 21 in the Maven compiler configuration, and fixing a typographical error in a Java class. Class diagram for updated imports in AbstractModel and PreventionSearchTo1classDiagram
class AbstractModel {
+ReflectionToStringBuilder toStringBuilder
}
class PreventionSearchTo1 {
+ReflectionToStringBuilder toStringBuilder
}
note for AbstractModel "Updated import to org.apache.commons.lang3.builder.ReflectionToStringBuilder"
note for PreventionSearchTo1 "Updated import to org.apache.commons.lang3.builder.ReflectionToStringBuilder"
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey @sebastian-j-ibanez - I've reviewed your changes - here's some feedback:
Overall Comments:
- The jump from Java 11 to 21 is significant. Please confirm that comprehensive testing has been performed with Java 21 and detail any compatibility issues that were discovered and addressed.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
yingbull
approved these changes
Dec 13, 2024
sebastian-j-ibanez
pushed a commit
that referenced
this pull request
Jan 8, 2025
Jdarji2130
pushed a commit
to Jdarji2130/Open-O-jay
that referenced
this pull request
Mar 23, 2025
Jdarji2130
pushed a commit
to Jdarji2130/Open-O-jay
that referenced
this pull request
Mar 23, 2025
D3V41
pushed a commit
that referenced
this pull request
Sep 4, 2025
D3V41
pushed a commit
that referenced
this pull request
Sep 4, 2025
yingbull
pushed a commit
that referenced
this pull request
Oct 15, 2025
…armacy-add-time Tweak - surface *addDate* field out of demographicPharmacy table
D3V41
pushed a commit
that referenced
this pull request
Jan 30, 2026
…ion-order Fix: reverse flowsheets prevention order, now descending instead of ascending to match other parts of the flowsheet, like measurements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes made
This PR has a few last minute fixes we've been meaning to make in bullfrog. These include:
apache.commons.lang3instead ofapache.commons.langfor StringBuilder and ReflectionToStringBuilder in several classes.lang3version fixes several failing unit tests.EctConEditSpecialists2Action.javaSummary by Sourcery
Fix import statements to use 'apache.commons.lang3' for StringBuilder and ReflectionToStringBuilder, update Maven compiler plugin to target Java 21, and correct a typo in 'EctConEditSpecialists2Action.java'.
Bug Fixes:
Build: