-
Notifications
You must be signed in to change notification settings - Fork 5
new PR to test on #8
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
base: main
Are you sure you want to change the base?
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -32,6 +32,9 @@ public void setFileHash(String fileHash) { | |||||
| this.fileHash = fileHash; | ||||||
| } | ||||||
|
|
||||||
| /** | ||||||
| * Override equals method for the ExcludeSegnatureItem-class | ||||||
|
Owner
Author
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. Typo in class name in comment - should be 'ExcludeSignatureItem'
Suggested change
#deepseek-review:inline |
||||||
| **/ | ||||||
| @Override | ||||||
| public boolean equals(Object o) { | ||||||
| if (o == null || getClass() != o.getClass()) return false; | ||||||
|
Owner
Author
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. Use instanceof pattern matching for cleaner null and type checking
Suggested change
#deepseek-review:inline |
||||||
|
|
||||||
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.
Method chain formatting could be improved for better readability.
#deepseek-review:inline