8024678: Java source files in hotspot/test/testlibrary should not use @author tag in JavaDoc

Sat, 28 Sep 2013 12:32:09 +0400

author
iignatyev
date
Sat, 28 Sep 2013 12:32:09 +0400
changeset 5795
e8e077292da3
parent 5794
1c3486050433
child 5796
303826f477c6

8024678: Java source files in hotspot/test/testlibrary should not use @author tag in JavaDoc
Reviewed-by: twisti

test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java file | annotate | diff | comparison | revisions
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java file | annotate | diff | comparison | revisions
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java file | annotate | diff | comparison | revisions
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java file | annotate | diff | comparison | revisions
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java file | annotate | diff | comparison | revisions
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java file | annotate | diff | comparison | revisions
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java file | annotate | diff | comparison | revisions
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java file | annotate | diff | comparison | revisions
     1.1 --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java	Fri Sep 27 15:43:03 2013 -0700
     1.2 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java	Sat Sep 28 12:32:09 2013 +0400
     1.3 @@ -36,8 +36,7 @@
     1.4  import java.nio.file.attribute.*;
     1.5  
     1.6  /**
     1.7 - * * Handler for dirs containing classes to compile.
     1.8 - * @author igor.ignatyev@oracle.com
     1.9 + * Handler for dirs containing classes to compile.
    1.10   */
    1.11  public class ClassPathDirEntry extends PathHandler {
    1.12  
     2.1 --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java	Fri Sep 27 15:43:03 2013 -0700
     2.2 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java	Sat Sep 28 12:32:09 2013 +0400
     2.3 @@ -35,7 +35,6 @@
     2.4  
     2.5  /**
     2.6   * Handler for jar-files containing classes to compile.
     2.7 - * @author igor.ignatyev@oracle.com
     2.8   */
     2.9  public class ClassPathJarEntry extends PathHandler {
    2.10  
     3.1 --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java	Fri Sep 27 15:43:03 2013 -0700
     3.2 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java	Sat Sep 28 12:32:09 2013 +0400
     3.3 @@ -31,8 +31,6 @@
     3.4  
     3.5  /**
     3.6   * Handler for dirs containing jar-files with classes to compile.
     3.7 - *
     3.8 - * @author igor.ignatyev@oracle.com
     3.9   */
    3.10  public class ClassPathJarInDirEntry extends PathHandler {
    3.11  
     4.1 --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java	Fri Sep 27 15:43:03 2013 -0700
     4.2 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java	Sat Sep 28 12:32:09 2013 +0400
     4.3 @@ -32,8 +32,6 @@
     4.4  
     4.5  /**
     4.6   * Handler for files containing a list of classes to compile.
     4.7 - *
     4.8 - * @author igor.ignatyev@oracle.com
     4.9   */
    4.10  public class ClassesListInFile extends PathHandler {
    4.11      public ClassesListInFile(Path root, Executor executor) {
     5.1 --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java	Fri Sep 27 15:43:03 2013 -0700
     5.2 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java	Sat Sep 28 12:32:09 2013 +0400
     5.3 @@ -32,9 +32,6 @@
     5.4  import java.util.List;
     5.5  import java.util.concurrent.*;
     5.6  
     5.7 -/**
     5.8 - * @author igor.ignatyev@oracle.com
     5.9 - */
    5.10  public class CompileTheWorld {
    5.11      /**
    5.12       * Entry point. Compiles classes in {@code args}, or all classes in
     6.1 --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java	Fri Sep 27 15:43:03 2013 -0700
     6.2 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java	Sat Sep 28 12:32:09 2013 +0400
     6.3 @@ -36,8 +36,6 @@
     6.4  /**
     6.5   * Provide method to compile whole class.
     6.6   * Also contains compiled methods and classes counters.
     6.7 - *
     6.8 - * @author igor.ignatyev@oracle.com
     6.9   */
    6.10  public class Compiler {
    6.11      private Compiler() { }
     7.1 --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java	Fri Sep 27 15:43:03 2013 -0700
     7.2 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java	Sat Sep 28 12:32:09 2013 +0400
     7.3 @@ -35,10 +35,7 @@
     7.4  
     7.5  /**
     7.6   * Abstract handler for path.
     7.7 - * <p/>
     7.8   * Concrete subclasses should implement method {@link #process()}.
     7.9 - *
    7.10 - * @author igor.ignatyev@oracle.com
    7.11   */
    7.12  public abstract class PathHandler {
    7.13      private static final Pattern JAR_IN_DIR_PATTERN
     8.1 --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java	Fri Sep 27 15:43:03 2013 -0700
     8.2 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java	Sat Sep 28 12:32:09 2013 +0400
     8.3 @@ -31,8 +31,6 @@
     8.4  
     8.5  /**
     8.6   * Auxiliary methods.
     8.7 - *
     8.8 - * @author igor.ignatyev@oracle.com
     8.9   */
    8.10  public class Utils {
    8.11      /**

mercurial