Skip to content

Commit

Permalink
Fix checkstyle failure with generated-sources (#1194)
Browse files Browse the repository at this point in the history
Since https://github.com/hazelcast/hazelcast-mono/pull/1174, [checkstyle
is
failing](https://jenkins.hazelcast.com/job/Hazelcast-mono-EE-pr-nightly-tests/43/consoleText)
on files in `hazelcast/hazelcast-sql/target/generated-sources`.

Revert the removal of the suppression of warnings in
`generated-sources`.

GitOrigin-RevId: fb4ac71ddc2fa8c558c336b7ef8c4da867c5b89e
  • Loading branch information
JackPGreen authored and actions-user committed Mar 26, 2024
1 parent 8fdbedf commit 9768cbe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions checkstyle/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@
<suppress checks="OperatorWrap" files="[\\/]src[\\/]test[\\/]java[\\/]com[\\/]hazelcast[\\/]jet[\\/]"/>
<suppress checks="VisibilityModifier" files="[\\/]src[\\/]main[\\/]java[\\/]com[\\/]hazelcast[\\/]jet[\\/]impl[\\/]"/>

<suppress checks="" files="target[\\/]generated-sources"/>
<suppress checks="" files="target[\\/]generated-test-sources"/>

<!-- Javadoc suppressions -->
<suppress checks="JavadocPackage" files="com[\\/]hazelcast[\\/]security[\\/]"/>

Expand Down

0 comments on commit 9768cbe

Please sign in to comment.