Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Orekit
Orekit
Commits
4ea16f36
Commit
4ea16f36
authored
Jun 29, 2016
by
Luc Maisonobe
Browse files
Fixed findbugs warnings.
parent
1bdeeea1
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/orekit/data/ZipJarCrawler.java
View file @
4ea16f36
...
...
@@ -288,6 +288,10 @@ public class ZipJarCrawler implements DataProvider {
/** {@inheritDoc} */
@Override
public
EntryStream
next
()
throws
NoSuchElementException
{
if
(
next
==
null
)
{
// this should never happen
throw
new
NoSuchElementException
();
}
return
next
;
}
...
...
src/main/java/org/orekit/estimation/measurements/Range.java
View file @
4ea16f36
...
...
@@ -162,8 +162,8 @@ public class Range extends AbstractMeasurement<Range> {
dRdPx
*
dt
,
dRdPy
*
dt
,
dRdPz
*
dt
});
if
(
station
.
getEastOffsetDriver
().
isSelected
()
|
station
.
getNorthOffsetDriver
().
isSelected
()
|
if
(
station
.
getEastOffsetDriver
().
isSelected
()
|
|
station
.
getNorthOffsetDriver
().
isSelected
()
|
|
station
.
getZenithOffsetDriver
().
isSelected
())
{
// donwlink partial derivatives
...
...
src/main/java/org/orekit/propagation/integration/IntegratedEphemeris.java
View file @
4ea16f36
...
...
@@ -187,11 +187,7 @@ public class IntegratedEphemeris
}
return
state
;
}
catch
(
OrekitExceptionWrapper
oew
)
{
if
(
oew
.
getException
()
instanceof
OrekitException
)
{
throw
(
OrekitException
)
oew
.
getException
();
}
else
{
throw
new
OrekitException
(
oew
.
getException
());
}
throw
oew
.
getException
();
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment