Skip to content
Snippets Groups Projects
Commit 0f47a8e4 authored by Guylaine Prat's avatar Guylaine Prat
Browse files

Remove useless parenthesis

parent 7c643018
No related branches found
No related tags found
No related merge requests found
Pipeline #499 passed
...@@ -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}" />
......
...@@ -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
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment