-
-
Notifications
You must be signed in to change notification settings - Fork 639
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
Remove explicit null checks #2744
Open
patrickguenther
wants to merge
25
commits into
vavr-io:version/1.x
Choose a base branch
from
patrickguenther:2711-remove-not-null-assertions
base: version/1.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
6445c85
[failing] Removed Objects.requireNonNull() checks throughout.
jbrains a62f55b
Shifted the failure from composing f.andThen(null) to invoking the re…
jbrains 5c207d3
Removed an obsolete test.
jbrains 8cd8fbb
Weakened an expected exception type, avoiding overspecifying.
jbrains d7525fe
Traversable can tolerate a null _combine_ operator when folding right…
jbrains d4e650f
Traversable can now tolerate a null Comparator if minBy() doesn't nee…
jbrains 5f3fe30
Traversable now tolerates a null combine operator, as long as it does…
jbrains c093e16
Traversable now ignores the combine operator when trying to reduce() …
jbrains 5fa7bf4
Traversables now ignore a null combine operator when reduce*() doesn'…
jbrains eae1d55
Fixed Traversable tests for reduce*Option(null) over an empty collect…
jbrains c76fdf7
Traversable.zip() now ignores a null argument when there's nothing to…
jbrains 865ffea
Traversable can now tolerate a null Comparator if maxBy() doesn't nee…
jbrains fe0de3c
Traversable now ignores a null combine operator when it doesn't need …
jbrains 3969840
Traversable now tolerates a null predicate when there are no elements…
jbrains a67ae71
Traversable now ignores a null partial function when it doesn't need …
jbrains 95fcd33
iterator returns itself when empty
patrickguenther d4829d7
fixed CharSeqTest
patrickguenther 819a84f
Stream::partition no longer throws when null predicate and empty
patrickguenther f36b463
Fixes EitherTest
patrickguenther 9051824
fixed OptionTest
patrickguenther 8c6732e
fixed TryTest
patrickguenther 665a2c6
fixed ValidationTest
patrickguenther 11f66ef
fixed JavaConvertersTest
patrickguenther 1b6c25b
fixed FutureTest
patrickguenther 28aa943
fixes erroneous javadoc comment
patrickguenther 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 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'm not sure if this is adheres to coding guidelines.
If
partialFunction == null
should not throw when empty, this additional check is required, because the expressionpartialFunction::isDefinedAt
will otherwise throw immediately.