Skip to content

Commit

Permalink
Issue sevntu-checkstyle#525: removed javadoc package suppression and …
Browse files Browse the repository at this point in the history
…fixed violations
  • Loading branch information
rnveach authored and kariem committed Jul 26, 2018
1 parent f0a1429 commit e1c4e19
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
@@ -0,0 +1,24 @@
////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2017 the original author or authors.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
////////////////////////////////////////////////////////////////////////////////

/**
* Contains the <span class="xdocspagetitle">Size</span> checks
* that are bundled with the main distribution.
*/
package com.github.sevntu.checkstyle.checks.sizes;
@@ -0,0 +1,24 @@
////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2017 the original author or authors.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
////////////////////////////////////////////////////////////////////////////////

/**
* Contains the miscellaneous utilities that are bundled with the main distribution.
*/
package com.github.sevntu.checkstyle;

1 change: 0 additions & 1 deletion sevntu-checks/suppressions.xml
Expand Up @@ -18,7 +18,6 @@
<suppress checks="NestedIfDepth|ReturnCount" files="UnnecessaryParenthesesExtendedCheck.java"/>
<suppress checks="InnerAssignment" files="OverridableMethodInConstructorCheck.java"/>
<suppress checks="BooleanExpressionComplexity" files="ForbidWildcardAsReturnTypeCheck.java"/>
<suppress checks="JavadocPackage" files="(LineLengthExtendedCheck|Utils).java"/>
<suppress checks="AbstractClassName" files=".*[\\/]BaseCheckTestSupport\.java"/>
<!-- END of legacy code -->

Expand Down

0 comments on commit e1c4e19

Please sign in to comment.