-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
chore: Transaction PG - Insert/Save and Read ops #37313
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -214,4 +214,8 @@ public class FieldNameCE { | |||
public static final String ARCHIVE = "archive"; | ||||
|
||||
public static final String DELETE = "delete"; | ||||
|
||||
public static final String GET = "get"; | ||||
|
||||
public static final String SAVE = "save"; | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove duplicate constant The constant Apply this diff to remove the duplicate: - public static final String SAVE = "save"; And update any new code to use the existing 📝 Committable suggestion
Suggested change
|
||||
} |
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.
Add null check before updating transactionContext
Ensure
id
is not null before adding totransactionContext
to prevent potentialNullPointerException
.Apply this change:
📝 Committable suggestion