Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rugged
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Orekit
Rugged
Commits
0f47a8e4
Commit
0f47a8e4
authored
4 years ago
by
Guylaine Prat
Browse files
Options
Downloads
Patches
Plain Diff
Remove useless parenthesis
parent
7c643018
No related branches found
No related tags found
No related merge requests found
Pipeline
#499
passed
4 years ago
Stage: verify
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
checkstyle.xml
+0
-5
0 additions, 5 deletions
checkstyle.xml
src/main/java/org/orekit/rugged/refraction/AtmosphericComputationParameters.java
+2
-6
2 additions, 6 deletions
...t/rugged/refraction/AtmosphericComputationParameters.java
with
2 additions
and
11 deletions
checkstyle.xml
+
0
−
5
View file @
0f47a8e4
...
@@ -94,11 +94,6 @@
...
@@ -94,11 +94,6 @@
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume MultipleStringLiterals check"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume MultipleStringLiterals check"
/>
<property
name=
"checkFormat"
value=
"MultipleStringLiteralsCheck"
/>
<property
name=
"checkFormat"
value=
"MultipleStringLiteralsCheck"
/>
</module>
</module>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop UnnecessaryParentheses check"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume UnnecessaryParentheses check"
/>
<property
name=
"checkFormat"
value=
"UnnecessaryParentheses"
/>
</module>
</module>
</module>
<module
name=
"RegexpHeader"
>
<module
name=
"RegexpHeader"
>
<property
name=
"headerFile"
value=
"${checkstyle.header.file}"
/>
<property
name=
"headerFile"
value=
"${checkstyle.header.file}"
/>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/orekit/rugged/refraction/AtmosphericComputationParameters.java
+
2
−
6
View file @
0f47a8e4
...
@@ -94,13 +94,9 @@ public class AtmosphericComputationParameters {
...
@@ -94,13 +94,9 @@ public class AtmosphericComputationParameters {
}
}
this
.
nbLineGrid
=
(
maxLine
-
minLine
+
1
-
2
*
MARGIN_LINE
)
/
this
.
lineStep
;
this
.
nbLineGrid
=
(
maxLine
-
minLine
+
1
-
2
*
MARGIN_LINE
)
/
this
.
lineStep
;
// CHECKSTYLE: stop UnnecessaryParentheses check
// Compute the linear grids in pixel (u index) and line (v index)
// Compute the linear grids in pixel (u index) and line (v index)
this
.
uGrid
=
GridCreation
.
createLinearGrid
(
0
,
(
sensorNbPxs
-
1
),
this
.
nbPixelGrid
);
this
.
uGrid
=
GridCreation
.
createLinearGrid
(
0
,
sensorNbPxs
-
1
,
this
.
nbPixelGrid
);
this
.
vGrid
=
GridCreation
.
createLinearGrid
((
minLine
+
MARGIN_LINE
),
(
maxLine
-
MARGIN_LINE
),
this
.
nbLineGrid
);
this
.
vGrid
=
GridCreation
.
createLinearGrid
(
minLine
+
MARGIN_LINE
,
maxLine
-
MARGIN_LINE
,
this
.
nbLineGrid
);
// CHECKSTYLE: resume UnnecessaryParentheses check
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment