# HG changeset patch # User iignatyev # Date 1380357129 -14400 # Node ID e8e077292da395c77f7374bf116d6538971c4f8a # Parent 1c3486050433110c36e975755a5700c2ab7ee24c 8024678: Java source files in hotspot/test/testlibrary should not use @author tag in JavaDoc Reviewed-by: twisti diff -r 1c3486050433 -r e8e077292da3 test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java Fri Sep 27 15:43:03 2013 -0700 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java Sat Sep 28 12:32:09 2013 +0400 @@ -36,8 +36,7 @@ import java.nio.file.attribute.*; /** - * * Handler for dirs containing classes to compile. - * @author igor.ignatyev@oracle.com + * Handler for dirs containing classes to compile. */ public class ClassPathDirEntry extends PathHandler { diff -r 1c3486050433 -r e8e077292da3 test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java Fri Sep 27 15:43:03 2013 -0700 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java Sat Sep 28 12:32:09 2013 +0400 @@ -35,7 +35,6 @@ /** * Handler for jar-files containing classes to compile. - * @author igor.ignatyev@oracle.com */ public class ClassPathJarEntry extends PathHandler { diff -r 1c3486050433 -r e8e077292da3 test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java Fri Sep 27 15:43:03 2013 -0700 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java Sat Sep 28 12:32:09 2013 +0400 @@ -31,8 +31,6 @@ /** * Handler for dirs containing jar-files with classes to compile. - * - * @author igor.ignatyev@oracle.com */ public class ClassPathJarInDirEntry extends PathHandler { diff -r 1c3486050433 -r e8e077292da3 test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java Fri Sep 27 15:43:03 2013 -0700 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java Sat Sep 28 12:32:09 2013 +0400 @@ -32,8 +32,6 @@ /** * Handler for files containing a list of classes to compile. - * - * @author igor.ignatyev@oracle.com */ public class ClassesListInFile extends PathHandler { public ClassesListInFile(Path root, Executor executor) { diff -r 1c3486050433 -r e8e077292da3 test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java Fri Sep 27 15:43:03 2013 -0700 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java Sat Sep 28 12:32:09 2013 +0400 @@ -32,9 +32,6 @@ import java.util.List; import java.util.concurrent.*; -/** - * @author igor.ignatyev@oracle.com - */ public class CompileTheWorld { /** * Entry point. Compiles classes in {@code args}, or all classes in diff -r 1c3486050433 -r e8e077292da3 test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java Fri Sep 27 15:43:03 2013 -0700 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java Sat Sep 28 12:32:09 2013 +0400 @@ -36,8 +36,6 @@ /** * Provide method to compile whole class. * Also contains compiled methods and classes counters. - * - * @author igor.ignatyev@oracle.com */ public class Compiler { private Compiler() { } diff -r 1c3486050433 -r e8e077292da3 test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java Fri Sep 27 15:43:03 2013 -0700 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java Sat Sep 28 12:32:09 2013 +0400 @@ -35,10 +35,7 @@ /** * Abstract handler for path. - *

* Concrete subclasses should implement method {@link #process()}. - * - * @author igor.ignatyev@oracle.com */ public abstract class PathHandler { private static final Pattern JAR_IN_DIR_PATTERN diff -r 1c3486050433 -r e8e077292da3 test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java --- a/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java Fri Sep 27 15:43:03 2013 -0700 +++ b/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java Sat Sep 28 12:32:09 2013 +0400 @@ -31,8 +31,6 @@ /** * Auxiliary methods. - * - * @author igor.ignatyev@oracle.com */ public class Utils { /**