forked from apache/commons-math
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Annotating classes of util package #1
Open
Kakarot-SSJ4
wants to merge
41
commits into
typetools:master
Choose a base branch
from
Kakarot-SSJ4:annotated
base: master
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 all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
adde8f7
annotating
Kakarot-SSJ4 a1e270d
MultidimesnionalCounter
Kakarot-SSJ4 f0c7f44
pom.xml
Kakarot-SSJ4 91e7996
unnecessary changes
Kakarot-SSJ4 5187fb2
pom
Kakarot-SSJ4 9170b66
recitfying
Kakarot-SSJ4 0129347
removed unnecessary changes
Kakarot-SSJ4 2940ec6
annotating
Kakarot-SSJ4 a87a7fe
made suggested changes
Kakarot-SSJ4 428f5fd
annotating FastMath.java
Kakarot-SSJ4 9ec2c44
OpenIntToDoubleHashMap.java
Kakarot-SSJ4 d9f54c8
OpenIntToFieldHashMap.java
Kakarot-SSJ4 1bf39c6
annotating
Kakarot-SSJ4 a57e7d0
fixing
Kakarot-SSJ4 6cee18b
fixing
Kakarot-SSJ4 dfe72f2
made suggested changes
Kakarot-SSJ4 a74ac32
made suggested changes
Kakarot-SSJ4 c608b71
made suggested changes
Kakarot-SSJ4 00e9867
made suggested changes
Kakarot-SSJ4 112248e
annotated FastMathCalc.java
Kakarot-SSJ4 f3cfb7e
checker version 2.9.0
Kakarot-SSJ4 855cf84
made suggested changes
Kakarot-SSJ4 e96b1a7
made suggested changes
Kakarot-SSJ4 ca5ae72
made suggested changes
Kakarot-SSJ4 abee324
Merge branch 'annotated-2' into annotated-3
Kakarot-SSJ4 5bbf6e7
made suggested changes
Kakarot-SSJ4 915e208
Merge branch 'annotated' into annotated-2
Kakarot-SSJ4 39f4314
Merge branch 'annotated-2' into annotated-3
Kakarot-SSJ4 dbb06b9
message
Kakarot-SSJ4 4e439f5
openjdk
Kakarot-SSJ4 53d47ef
IntRange
Kakarot-SSJ4 473c6de
@NonNegative
Kakarot-SSJ4 a59a8c5
error handled
Kakarot-SSJ4 07fe742
made suggested changes
Kakarot-SSJ4 566f7af
Merge pull request #3 from Kakarot-SSJ4/annotated-3
Kakarot-SSJ4 1102c66
Merge branch 'annotated' into annotated-2
Kakarot-SSJ4 a91c465
Merge pull request #1 from Kakarot-SSJ4/annotated-2
Kakarot-SSJ4 aed29ed
recctifying errors
Kakarot-SSJ4 dd1859e
resolved all the errors
Kakarot-SSJ4 623e052
skip test files
Kakarot-SSJ4 2cf074f
made suggested changes
Kakarot-SSJ4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ language: java | |
sudo: required | ||
|
||
jdk: | ||
- oraclejdk8 | ||
- openjdk8 | ||
|
||
env: | ||
- MAVEN_OPTS="-Xmx6g -Xms2g" | ||
|
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
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
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
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
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
Oops, something went wrong.
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 would expect this call to
substring
to not issue an error, because the expected type for both arguments isIndexOrHigh
- which should both be established by the conditionals, as your suppress warning comment notes. Can you write a test case like this code and submit a bug? Thanks!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.
The explanation
@SuppressWarnings
was wrong, it actually showsarray.access.unsafe.low
error as it cannot recognisepos.getIndex()
as@NonNegative
.The PR with ParsePosition annotation is open, so I have provided a link in the comment.