Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
9176aa05
D
dragonwell8_hotspot
项目概览
openanolis
/
dragonwell8_hotspot
通知
2
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_hotspot
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9176aa05
编写于
9月 28, 2013
作者:
I
iignatyev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8024678: Java source files in hotspot/test/testlibrary should not use @author tag in JavaDoc
Reviewed-by: twisti
上级
9193b603
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
1 addition
and
17 deletion
+1
-17
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java
...rary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java
+1
-2
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java
...rary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java
+0
-1
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java
...ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java
+0
-2
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java
...rary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java
+0
-2
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java
...ibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java
+0
-3
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java
+0
-2
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java
...estlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java
+0
-3
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java
+0
-2
未找到文件。
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathDirEntry.java
浏览文件 @
9176aa05
...
@@ -36,8 +36,7 @@ import java.nio.file.*;
...
@@ -36,8 +36,7 @@ import java.nio.file.*;
import
java.nio.file.attribute.*
;
import
java.nio.file.attribute.*
;
/**
/**
* * Handler for dirs containing classes to compile.
* Handler for dirs containing classes to compile.
* @author igor.ignatyev@oracle.com
*/
*/
public
class
ClassPathDirEntry
extends
PathHandler
{
public
class
ClassPathDirEntry
extends
PathHandler
{
...
...
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarEntry.java
浏览文件 @
9176aa05
...
@@ -35,7 +35,6 @@ import java.nio.file.*;
...
@@ -35,7 +35,6 @@ import java.nio.file.*;
/**
/**
* Handler for jar-files containing classes to compile.
* Handler for jar-files containing classes to compile.
* @author igor.ignatyev@oracle.com
*/
*/
public
class
ClassPathJarEntry
extends
PathHandler
{
public
class
ClassPathJarEntry
extends
PathHandler
{
...
...
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassPathJarInDirEntry.java
浏览文件 @
9176aa05
...
@@ -31,8 +31,6 @@ import java.util.concurrent.Executor;
...
@@ -31,8 +31,6 @@ import java.util.concurrent.Executor;
/**
/**
* Handler for dirs containing jar-files with classes to compile.
* Handler for dirs containing jar-files with classes to compile.
*
* @author igor.ignatyev@oracle.com
*/
*/
public
class
ClassPathJarInDirEntry
extends
PathHandler
{
public
class
ClassPathJarInDirEntry
extends
PathHandler
{
...
...
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/ClassesListInFile.java
浏览文件 @
9176aa05
...
@@ -32,8 +32,6 @@ import java.util.concurrent.Executor;
...
@@ -32,8 +32,6 @@ import java.util.concurrent.Executor;
/**
/**
* Handler for files containing a list of classes to compile.
* Handler for files containing a list of classes to compile.
*
* @author igor.ignatyev@oracle.com
*/
*/
public
class
ClassesListInFile
extends
PathHandler
{
public
class
ClassesListInFile
extends
PathHandler
{
public
ClassesListInFile
(
Path
root
,
Executor
executor
)
{
public
ClassesListInFile
(
Path
root
,
Executor
executor
)
{
...
...
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/CompileTheWorld.java
浏览文件 @
9176aa05
...
@@ -32,9 +32,6 @@ import java.nio.file.Paths;
...
@@ -32,9 +32,6 @@ import java.nio.file.Paths;
import
java.util.List
;
import
java.util.List
;
import
java.util.concurrent.*
;
import
java.util.concurrent.*
;
/**
* @author igor.ignatyev@oracle.com
*/
public
class
CompileTheWorld
{
public
class
CompileTheWorld
{
/**
/**
* Entry point. Compiles classes in {@code args}, or all classes in
* Entry point. Compiles classes in {@code args}, or all classes in
...
...
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Compiler.java
浏览文件 @
9176aa05
...
@@ -36,8 +36,6 @@ import java.util.concurrent.atomic.AtomicLong;
...
@@ -36,8 +36,6 @@ import java.util.concurrent.atomic.AtomicLong;
/**
/**
* Provide method to compile whole class.
* Provide method to compile whole class.
* Also contains compiled methods and classes counters.
* Also contains compiled methods and classes counters.
*
* @author igor.ignatyev@oracle.com
*/
*/
public
class
Compiler
{
public
class
Compiler
{
private
Compiler
()
{
}
private
Compiler
()
{
}
...
...
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/PathHandler.java
浏览文件 @
9176aa05
...
@@ -35,10 +35,7 @@ import java.util.concurrent.Executor;
...
@@ -35,10 +35,7 @@ import java.util.concurrent.Executor;
/**
/**
* Abstract handler for path.
* Abstract handler for path.
* <p/>
* Concrete subclasses should implement method {@link #process()}.
* Concrete subclasses should implement method {@link #process()}.
*
* @author igor.ignatyev@oracle.com
*/
*/
public
abstract
class
PathHandler
{
public
abstract
class
PathHandler
{
private
static
final
Pattern
JAR_IN_DIR_PATTERN
private
static
final
Pattern
JAR_IN_DIR_PATTERN
...
...
test/testlibrary/ctw/src/sun/hotspot/tools/ctw/Utils.java
浏览文件 @
9176aa05
...
@@ -31,8 +31,6 @@ import java.util.regex.Pattern;
...
@@ -31,8 +31,6 @@ import java.util.regex.Pattern;
/**
/**
* Auxiliary methods.
* Auxiliary methods.
*
* @author igor.ignatyev@oracle.com
*/
*/
public
class
Utils
{
public
class
Utils
{
/**
/**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录