Skip to content

Commit

Permalink
Suppression turn off. KfCustomer, KfFlexible and TextXpath fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
NikiTuz18 committed Apr 10, 2023
1 parent 3665ed4 commit 3fece54
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
1 change: 0 additions & 1 deletion checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ and fix all documentation.
<!DOCTYPE suppressions PUBLIC "-//Checkstyle//DTD SuppressionFilter Configuration 1.0//EN" "https://checkstyle.org/dtds/suppressions_1_0.dtd">
<suppressions>
<suppress checks="LineLength" files=".*\.java$" lines="0-23"/>
<suppress checks="JavadocVariable" files=".*\.java$" lines="23-9999"/>
<suppress checks="JavadocMethod" files=".*\.java$" lines="23-9999"/>
<suppress checks="HiddenField" files=".*\.java$" lines="23-9999"/>
<suppress checks="VisibilityModifier" files="KfFlexibleEnvelope.java" lines="46"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@
public final class KfFlexible<K, X>
implements ConsumerSettings<K, X>, ProducerSettings<K, X> {

/**
* The params.
*/
private final Params params;

@Override
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/xml/KfCustomer.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@
* @since 0.0.2
*/
public enum KfCustomer {
/**
* The consumer.
*/
CONSUMER("consumer"),
/**
* The producer.
*/
PRODUCER("producer");

/**
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/xml/TextXpath.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@
@RequiredArgsConstructor
public final class TextXpath {

/**
* The XML file.
*/
private final XML xml;
/**
* The XML element that xpath belongs to.
*/
private final String node;

@Override
Expand Down

0 comments on commit 3fece54

Please sign in to comment.