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

Reviewed-by: twisti
This commit is contained in:
Igor Ignatyev 2013-09-28 12:32:09 +04:00
parent f9b1731815
commit 74b0d053ee
8 changed files with 1 additions and 17 deletions

View File

@ -36,8 +36,7 @@ import java.nio.file.*;
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 {

View File

@ -35,7 +35,6 @@ import java.nio.file.*;
/**
* Handler for jar-files containing classes to compile.
* @author igor.ignatyev@oracle.com
*/
public class ClassPathJarEntry extends PathHandler {

View File

@ -31,8 +31,6 @@ import java.util.concurrent.Executor;
/**
* Handler for dirs containing jar-files with classes to compile.
*
* @author igor.ignatyev@oracle.com
*/
public class ClassPathJarInDirEntry extends PathHandler {

View File

@ -32,8 +32,6 @@ import java.util.concurrent.Executor;
/**
* 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) {

View File

@ -32,9 +32,6 @@ import java.nio.file.Paths;
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

View File

@ -36,8 +36,6 @@ import java.util.concurrent.atomic.AtomicLong;
/**
* Provide method to compile whole class.
* Also contains compiled methods and classes counters.
*
* @author igor.ignatyev@oracle.com
*/
public class Compiler {
private Compiler() { }

View File

@ -35,10 +35,7 @@ import java.util.concurrent.Executor;
/**
* 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

View File

@ -31,8 +31,6 @@ import java.util.regex.Pattern;
/**
* Auxiliary methods.
*
* @author igor.ignatyev@oracle.com
*/
public class Utils {
/**