partial fix for remove tag version from all javadocs, #718

This commit is contained in:
Roman Ivanov 2015-03-05 16:47:56 -08:00
parent 571f0f33d5
commit f782869339
55 changed files with 0 additions and 55 deletions

View File

@ -47,7 +47,6 @@ import java.util.Map;
* Loads a configuration from a standard configuration XML file.
*
* @author Oliver Burn
* @version 1.0
*/
public final class ConfigurationLoader
{

View File

@ -62,7 +62,6 @@ import static com.puppycrawl.tools.checkstyle.Utils.fileExtensionMatches;
* checks at each each node.
*
* @author Oliver Burn
* @version 1.0
*/
public final class TreeWalker
extends AbstractFileSetCheck

View File

@ -27,7 +27,6 @@ import com.google.common.collect.Sets;
* The base class for checks.
*
* @author Oliver Burn
* @version 1.0
* @see <a href="{@docRoot}/../writingchecks.html" target="_top">Writing
* your own checks</a>
*/

View File

@ -22,7 +22,6 @@ package com.puppycrawl.tools.checkstyle.api;
* Represents an error condition within Checkstyle.
*
* @author Oliver Burn
* @version 1.0
*/
public class CheckstyleException extends Exception
{

View File

@ -32,7 +32,6 @@ import antlr.collections.AST;
* ASTs?</a>.
* @author Oliver Burn
* @author lkuehne
* @version 1.0
* @see <a href="http://www.antlr.org/">ANTLR Website</a>
*/
public final class DetailAST extends CommonASTWithHiddenTokens

View File

@ -34,7 +34,6 @@ import java.util.regex.Pattern;
* Represents the contents of a file.
*
* @author Oliver Burn
* @version 1.0
*/
public final class FileContents implements CommentListener
{

View File

@ -44,7 +44,6 @@ import java.util.ResourceBundle.Control;
*
* @author Oliver Burn
* @author lkuehne
* @version 1.0
*/
public final class LocalizedMessage
implements Comparable<LocalizedMessage>, Serializable

View File

@ -28,7 +28,6 @@ import java.util.TreeSet;
/**
* Collection of messages.
* @author Oliver Burn
* @version 1.0
*/
public final class LocalizedMessages
{

View File

@ -24,7 +24,6 @@ import antlr.collections.AST;
* Contains utility methods for working on scope.
*
* @author Oliver Burn
* @version 1.0
*/
public final class ScopeUtils
{

View File

@ -33,7 +33,6 @@ import com.puppycrawl.tools.checkstyle.grammars.GeneratedJavaTokenTypes;
*
* @author Oliver Burn
* @author <a href="mailto:dobratzp@ele.uri.edu">Peter Dobratz</a>
* @version 1.0
*/
public final class TokenTypes
{

View File

@ -41,7 +41,6 @@ import org.apache.commons.logging.LogFactory;
* Contains utility methods.
*
* @author Oliver Burn
* @version 1.0
*/
public final class Utils
{

View File

@ -33,7 +33,6 @@ import org.apache.commons.beanutils.ConversionException;
* expression using the property name <code>format</code>. </p>
*
* @author Oliver Burn
* @version 1.0
*/
public abstract class AbstractFormatCheck
extends Check

View File

@ -36,7 +36,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* information functions.
*
* @author Oliver Burn
* @version 1.0
* @deprecated Checkstyle is not type aware tool and all Checks derived from this
* class are potentially unstable.
*/

View File

@ -26,7 +26,6 @@ import java.util.Set;
* <p>Limitations: this does not handle inner classes very well.</p>
*
* @author Oliver Burn
* @version 1.0
*/
public class ClassResolver
{

View File

@ -53,7 +53,6 @@ import org.apache.commons.beanutils.ConversionException;
*
* @author Christopher Lenz
* @author lkuehne
* @version 1.0
*/
public class NewlineAtEndOfFileCheck
extends AbstractFileSetCheck

View File

@ -48,7 +48,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
* @author Oliver Burn
* @author Baratali Izmailov
* @version 1.0
*/
public class TodoCommentCheck
extends Check

View File

@ -45,7 +45,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
*
* @author Oliver Burn
* @version 1.0
*/
public class UpperEllCheck extends Check
{

View File

@ -71,7 +71,6 @@ import com.puppycrawl.tools.checkstyle.checks.AbstractOptionCheck;
* @author Oliver Burn
* @author lkuehne
* @author maxvetrenko
* @version 1.0
*/
public class LeftCurlyCheck
extends AbstractOptionCheck<LeftCurlyOption>

View File

@ -60,7 +60,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
*
* @author Rick Giles
* @author <a href="mailto:nesterenko-aleksey@list.ru">Aleksey Nesterenko</a>
* @version 1.0
*/
public class NeedBracesCheck extends Check
{

View File

@ -68,7 +68,6 @@ import com.puppycrawl.tools.checkstyle.checks.CheckUtils;
* @author lkuehne
* @author o_sukhodolsky
* @author maxvetrenko
* @version 2.0
*/
public class RightCurlyCheck extends AbstractOptionCheck<RightCurlyOption>
{

View File

@ -39,7 +39,6 @@ import java.util.Set;
* &lt;module name="CovariantEquals"/&gt;
* </pre>
* @author Rick Giles
* @version 1.0
*/
public class CovariantEqualsCheck extends Check
{

View File

@ -41,7 +41,6 @@ import com.puppycrawl.tools.checkstyle.api.DetailAST;
* &lt;module name="EmptyStatement"/&gt;
* </pre>
* @author Rick Giles
* @version 1.0
*/
public class EmptyStatementCheck extends Check
{

View File

@ -121,7 +121,6 @@ package com.puppycrawl.tools.checkstyle.checks.coding;
*
*
* @author Travis Schneeberger
* @version 1.0
* @see java.lang.Object#clone()
* @see java.lang.Cloneable
* @see java.lang.CloneNotSupportedException

View File

@ -60,7 +60,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* @author Oliver Burn
* @author <a href="bschneider@vecna.com">Bill Schneider</a>
* @author Travis Schneeberger
* @version 2.0
*/
public class AvoidStarImportCheck
extends Check

View File

@ -60,7 +60,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* java.lang.Math.PI
* </p>
* @author Travis Schneeberger
* @version 1.0
*/
public class AvoidStaticImportCheck
extends Check

View File

@ -56,7 +56,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
* @author Oliver Burn
* @author Lars Kühne
* @version 1.0
*/
public class IllegalImportCheck
extends Check

View File

@ -49,7 +49,6 @@ import java.util.Set;
* Compatible with Java 1.5 source.
*
* @author Oliver Burn
* @version 1.0
*/
public class RedundantImportCheck
extends Check

View File

@ -39,7 +39,6 @@ import java.util.regex.Pattern;
* @author Chris Stillwell
* @author Daniel Grenner
* @author Travis Schneeberger
* @version 1.2
*/
public class JavadocStyleCheck
extends Check

View File

@ -32,7 +32,6 @@ import java.util.regex.Pattern;
* Checks that a variable has Javadoc comment.
*
* @author Oliver Burn
* @version 1.0
*/
public class JavadocVariableCheck
extends Check

View File

@ -62,7 +62,6 @@ import org.apache.commons.beanutils.ConversionException;
* </pre>
*
* @author Daniel Grenner
* @version 1.0
*/
public class WriteTagCheck
extends Check

View File

@ -43,7 +43,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
*
*
* @author Rick Giles
* @version 1.0
*/
public abstract class AbstractAccessControlNameCheck
extends AbstractNameCheck

View File

@ -27,7 +27,6 @@ import com.puppycrawl.tools.checkstyle.checks.AbstractFormatCheck;
* Abstract class for checking that names conform to a specified format.
*
* @author Rick Giles
* @version 1.0
*/
public abstract class AbstractNameCheck
extends AbstractFormatCheck

View File

@ -30,7 +30,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* <p>This class extends {@link AbstractNameCheck}</p>
*
* @author Travis Schneeberger
* @version 1.0
*/
public abstract class AbstractTypeParameterNameCheck
extends AbstractNameCheck

View File

@ -44,7 +44,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
*
* @author Travis Schneeberger
* @version 1.0
*/
public class ClassTypeParameterNameCheck
extends AbstractTypeParameterNameCheck

View File

@ -52,7 +52,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
*
*
* @author Rick Giles
* @version 1.0
*/
public class ConstantNameCheck
extends AbstractAccessControlNameCheck

View File

@ -47,7 +47,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
*
* @author Rick Giles
* @version 1.0
*/
public class LocalFinalVariableNameCheck
extends AbstractNameCheck

View File

@ -70,7 +70,6 @@ import com.puppycrawl.tools.checkstyle.api.Utils;
*
* @author Rick Giles
* @author maxvetrenko
* @version 1.0
*/
public class LocalVariableNameCheck
extends AbstractNameCheck

View File

@ -47,7 +47,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* &lt;/module&gt;
* </pre>
* @author Rick Giles
* @version 1.0
*/
public class MemberNameCheck
extends AbstractAccessControlNameCheck

View File

@ -68,7 +68,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* @author Oliver Burn
* @author Travis Schneeberger
* @author Utkarsh Srivastava
* @version 1.1
*/
public class MethodNameCheck
extends AbstractAccessControlNameCheck

View File

@ -44,7 +44,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
*
* @author Travis Schneeberger
* @version 1.0
*/
public class MethodTypeParameterNameCheck
extends AbstractTypeParameterNameCheck

View File

@ -58,7 +58,6 @@ import com.puppycrawl.tools.checkstyle.checks.AbstractFormatCheck;
* </pre>
*
* @author Oliver Burn
* @version 1.0
*/
public class PackageNameCheck
extends AbstractFormatCheck

View File

@ -45,7 +45,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* &lt;/module&gt;
* </pre>
* @author Rick Giles
* @version 1.0
*/
public class StaticVariableNameCheck
extends AbstractAccessControlNameCheck

View File

@ -61,7 +61,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </code>
* </pre>
* @author Oliver Burn
* @version 1.0
*/
public class ParameterNumberCheck
extends Check

View File

@ -28,7 +28,6 @@ import com.puppycrawl.tools.checkstyle.checks.AbstractOptionCheck;
* or such spaces are forbidden.
* </p>
* @author Oliver Burn
* @version 1.0
*/
abstract class AbstractParenPadCheck
extends AbstractOptionCheck<PadOption>

View File

@ -45,7 +45,6 @@ for (
* </pre>
*
* @author lkuehne
* @version 1.0
*/
public class EmptyForInitializerPadCheck
extends AbstractOptionCheck<PadOption>

View File

@ -45,7 +45,6 @@ for (Iterator foo = very.long.line.iterator();
* </pre>
*
* @author Rick Giles
* @version 1.0
*/
public class EmptyForIteratorPadCheck
extends AbstractOptionCheck<PadOption>

View File

@ -59,7 +59,6 @@ import com.puppycrawl.tools.checkstyle.checks.AbstractOptionCheck;
* &lt;/module&gt;
* </pre>
* @author Rick Giles
* @version 1.0
*/
public class MethodParamPadCheck

View File

@ -61,7 +61,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* @author Rick Giles
* @author lkuehne
* @author <a href="mailto:nesterenko-aleksey@list.ru">Aleksey Nesterenko</a>
* @version 1.0
*/
public class NoWhitespaceAfterCheck extends Check
{

View File

@ -56,7 +56,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
* @author Rick Giles
* @author lkuehne
* @version 1.0
*/
public class NoWhitespaceBeforeCheck
extends Check

View File

@ -85,7 +85,6 @@ import com.puppycrawl.tools.checkstyle.checks.AbstractOptionCheck;
* </pre>
*
* @author Rick Giles
* @version 1.0
*/
public class OperatorWrapCheck
extends AbstractOptionCheck<WrapOption>

View File

@ -60,7 +60,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* &lt;/module&gt;
* </pre>
* @author Oliver Burn
* @version 1.0
*/
public class ParenPadCheck extends AbstractParenPadCheck
{

View File

@ -46,7 +46,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* &lt;/module&gt;
* </pre>
* @author Oliver Burn
* @version 1.0
*/
public class TypecastParenPadCheck extends AbstractParenPadCheck
{

View File

@ -50,7 +50,6 @@ import com.puppycrawl.tools.checkstyle.api.DetailAST;
* </pre>
* @author Oliver Burn
* @author Rick Giles
* @version 1.0
*/
public class WhitespaceAfterCheck
extends Check

View File

@ -153,7 +153,6 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
*
* @author Oliver Burn
* @author maxvetrenko
* @version 1.0
*/
public class WhitespaceAroundCheck extends Check
{

View File

@ -22,7 +22,6 @@ package com.puppycrawl.tools.checkstyle.checks.whitespace;
* Represents the options for wrapping on an operator.
*
* @author Rick Giles
* @version 1.0
*/
public enum WrapOption
{