Skip to content

Commit 805e3f9

Browse files
committed
Suppression JavadocMethod turn off, KfFlexibleEnvelope and KfXmlFlexible fix
1 parent 3fece54 commit 805e3f9

3 files changed

Lines changed: 2 additions & 1 deletion

File tree

checkstyle-suppressions.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ and fix all documentation.
3030
<!DOCTYPE suppressions PUBLIC "-//Checkstyle//DTD SuppressionFilter Configuration 1.0//EN" "https://checkstyle.org/dtds/suppressions_1_0.dtd">
3131
<suppressions>
3232
<suppress checks="LineLength" files=".*\.java$" lines="0-23"/>
33-
<suppress checks="JavadocMethod" files=".*\.java$" lines="23-9999"/>
3433
<suppress checks="HiddenField" files=".*\.java$" lines="23-9999"/>
3534
<suppress checks="VisibilityModifier" files="KfFlexibleEnvelope.java" lines="46"/>
3635
<suppress checks="VisibilityModifier" files="KfAttrEnvelope.java" lines="36-45"/>

src/main/java/io/github/eocqrs/kafka/parameters/KfFlexibleEnvelope.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ protected KfFlexibleEnvelope(final Params params) {
5858
* A constructor that takes a String and converts it to ResourceOf.
5959
*
6060
* @param name Name of resource.
61+
* @throws Exception When something went wrong.
6162
*/
6263
protected KfFlexibleEnvelope(final String name) throws Exception {
6364
this(new ResourceOf(name));

src/main/java/io/github/eocqrs/kafka/xml/KfXmlFlexible.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public final class KfXmlFlexible<K, X> extends KfFlexibleEnvelope<K, X> {
4141
* Ctor.
4242
*
4343
* @param name Name of XML configuration placed in resources folder.
44+
* @throws Exception When something went wrong.
4445
*/
4546
public KfXmlFlexible(final String name) throws Exception {
4647
super(name);

0 commit comments

Comments
 (0)