Skip to content

Commit

Permalink
Suppression JavadocMethod turn off, KfFlexibleEnvelope and KfXmlFlexi…
Browse files Browse the repository at this point in the history
…ble fix
  • Loading branch information
NikiTuz18 committed Apr 10, 2023
1 parent 3fece54 commit 805e3f9
Show file tree
Hide file tree
Showing 3 changed files with 2 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="JavadocMethod" files=".*\.java$" lines="23-9999"/>
<suppress checks="HiddenField" files=".*\.java$" lines="23-9999"/>
<suppress checks="VisibilityModifier" files="KfFlexibleEnvelope.java" lines="46"/>
<suppress checks="VisibilityModifier" files="KfAttrEnvelope.java" lines="36-45"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ protected KfFlexibleEnvelope(final Params params) {
* A constructor that takes a String and converts it to ResourceOf.
*
* @param name Name of resource.
* @throws Exception When something went wrong.
*/
protected KfFlexibleEnvelope(final String name) throws Exception {
this(new ResourceOf(name));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public final class KfXmlFlexible<K, X> extends KfFlexibleEnvelope<K, X> {
* Ctor.
*
* @param name Name of XML configuration placed in resources folder.
* @throws Exception When something went wrong.
*/
public KfXmlFlexible(final String name) throws Exception {
super(name);
Expand Down

0 comments on commit 805e3f9

Please sign in to comment.