-
-
Notifications
You must be signed in to change notification settings - Fork 127
Next fixes #300
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
Closed
Closed
Next fixes #300
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
a3c6ee0
Redundant condition: "(o == null || !(o instanceof X))" is always th…
ca7beac
Updated dependency ?
df54488
Redundant condition: "(o == null || !(o instanceof X))" is always th…
49bafa3
Replace loop with Arrays.fill
e227a94
Use Math.min/max
8cd75af
Replace duplicate code.
9dd0c6a
Replace duplicate code.
2bc79d7
Redundant null check, can never be NULL. Error?
1dca191
Optional API
c1934e8
Redundant explicit array creation.
f3eaf59
Unnecessary String.length()
7357a84
Redundant cast removed.
9f67cf9
Simplified stream usage.
dbe682c
Use String instead
72157ed
Improved type declaration avoids class casts.
0659287
Use empty <> instead.
db489c3
Collapse catch blocks.
3bfed20
Use modern try with resource management
e42243c
Replace with lambda.
2ca93b1
Use List.sort(...)
7f8e26a
Use Comparator.comparing
3342a8c
Replace lambda with method reference (better readability)
cd4b7de
Replace lambda with method reference (better readability)
2b52cad
Use modern Map api.
dcf0340
Use expression lambda.
e54888f
Use enhanced for loop
48bbe80
Remove unnecessary boxing.
8162b8e
Remove unnecessary unboxing.
7c9b7ac
USe contains(...)
bf6ecec
Use modern, enhanced for-loop.
acb0f9b
Inner class can be static
696a0bf
Use parametrized constructor.
5e0e1fe
Use System.arraycopy
6699e15
Use Collections.addAll
d85d84e
Replace unpredictable constructor call
590b02f
Fixed compile error
67cd45e
Undo 'redundant cast removed'
c40f373
Fixed compile error.
cbf2864
Fixed compile error.
651976b
Undo 'Redundant cast removed'.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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.
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.
I didn't even know the existence of
merge:-)