Skip to content

Commit

Permalink
[hotfix][checkstyle] Remove suppression for runtime/concurrent
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Sep 5, 2018
1 parent b53a333 commit e5ff2de
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public void testConjunctFutureFailureOnSuccessive() throws Exception {
}

/**
* Tests that the conjunct future returns upon completion the collection of all future values
* Tests that the conjunct future returns upon completion the collection of all future values.
*/
@Test
public void testConjunctFutureValue() throws ExecutionException, InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ public void testCompleteAllExceptional() throws Exception {
final FlinkException suppressedException;

if (actual.equals(testException1)) {
suppressedException = testException2;
suppressedException = testException2;
} else {
suppressedException = testException1;
}
Expand Down
7 changes: 0 additions & 7 deletions tools/maven/suppressions-runtime.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,6 @@ under the License.
<suppress
files="(.*)test[/\\](.*)runtime[/\\]clusterframework[/\\](.*)"
checks="AvoidStarImport"/>
<suppress
files="(.*)runtime[/\\]concurrent[/\\](.*)"
checks="NewlineAtEndOfFile|RegexpSingleline|TodoComment|RedundantImport|ImportOrder|RedundantModifier|JavadocMethod|JavadocParagraph|JavadocType|JavadocStyle|PackageName|TypeNameCheck|ConstantNameCheck|StaticVariableNameCheck|MemberNameCheck|MethodNameCheck|ParameterName|LocalFinalVariableName|LocalVariableName|LeftCurly|UpperEll|FallThrough|reliefPattern|SimplifyBooleanExpression|EmptyStatement|ModifierOrder|EmptyLineSeparator|WhitespaceAround|WhitespaceAfter|NoWhitespaceAfter|NoWhitespaceBefore|OperatorWrap|ParenPad"/>
<!--Only additional checks for test sources. Those checks were present in the "pre-strict" checkstyle but were not applied to test sources. We do not want to suppress them for sources directory-->
<suppress
files="(.*)test[/\\](.*)runtime[/\\]concurrent[/\\](.*)"
checks="AvoidStarImport"/>
<suppress
files="(.*)runtime[/\\]execution[/\\](.*)"
checks="NewlineAtEndOfFile|RegexpSingleline|TodoComment|RedundantImport|ImportOrder|RedundantModifier|JavadocMethod|JavadocParagraph|JavadocType|JavadocStyle|PackageName|TypeNameCheck|ConstantNameCheck|StaticVariableNameCheck|MemberNameCheck|MethodNameCheck|ParameterName|LocalFinalVariableName|LocalVariableName|LeftCurly|UpperEll|FallThrough|reliefPattern|SimplifyBooleanExpression|EmptyStatement|ModifierOrder|EmptyLineSeparator|WhitespaceAround|WhitespaceAfter|NoWhitespaceAfter|NoWhitespaceBefore|OperatorWrap|ParenPad"/>
Expand Down

0 comments on commit e5ff2de

Please sign in to comment.