changeset 12327:e8e077292da3

8024678: Java source files in hotspot/test/testlibrary should not use @author tag in JavaDoc Reviewed-by: twisti
author iignatyev
date Sat, 28 Sep 2013 12:32:09 +0400
parents 1c3486050433
children 303826f477c6
files test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java
diffstat 8 files changed, 1 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- 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 {
 
--- 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 {
 
--- 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 {
 
--- 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) {
--- 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
--- 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() { }
--- 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.
- * <p/>
  * Concrete subclasses should implement method {@link #process()}.
- *
- * @author igor.ignatyev@oracle.com
  */
 public abstract class PathHandler {
     private static final Pattern JAR_IN_DIR_PATTERN
--- 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 {
     /**