Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
a1227484
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a1227484
编写于
7月 25, 2013
作者:
D
darcy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8021408: Fix misc doclint issues in java.util and java.io
Reviewed-by: dholmes, chegar, psandoz
上级
c1838654
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
13 addition
and
8 deletion
+13
-8
src/share/classes/java/io/ObjectInputStream.java
src/share/classes/java/io/ObjectInputStream.java
+2
-1
src/share/classes/java/io/ObjectOutputStream.java
src/share/classes/java/io/ObjectOutputStream.java
+2
-1
src/share/classes/java/util/jar/Attributes.java
src/share/classes/java/util/jar/Attributes.java
+3
-3
src/share/classes/java/util/jar/JarEntry.java
src/share/classes/java/util/jar/JarEntry.java
+2
-1
src/share/classes/java/util/jar/JarFile.java
src/share/classes/java/util/jar/JarFile.java
+2
-1
src/share/classes/java/util/stream/StreamSupport.java
src/share/classes/java/util/stream/StreamSupport.java
+2
-1
未找到文件。
src/share/classes/java/io/ObjectInputStream.java
浏览文件 @
a1227484
/*
/*
* Copyright (c) 1996, 201
1
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 201
3
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -313,6 +313,7 @@ public class ObjectInputStream
...
@@ -313,6 +313,7 @@ public class ObjectInputStream
* @throws SecurityException if a security manager exists and its
* @throws SecurityException if a security manager exists and its
* <code>checkPermission</code> method denies enabling
* <code>checkPermission</code> method denies enabling
* subclassing.
* subclassing.
* @throws IOException if an I/O error occurs while creating this stream
* @see SecurityManager#checkPermission
* @see SecurityManager#checkPermission
* @see java.io.SerializablePermission
* @see java.io.SerializablePermission
*/
*/
...
...
src/share/classes/java/io/ObjectOutputStream.java
浏览文件 @
a1227484
/*
/*
* Copyright (c) 1996, 201
2
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 201
3
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -265,6 +265,7 @@ public class ObjectOutputStream
...
@@ -265,6 +265,7 @@ public class ObjectOutputStream
* @throws SecurityException if a security manager exists and its
* @throws SecurityException if a security manager exists and its
* <code>checkPermission</code> method denies enabling
* <code>checkPermission</code> method denies enabling
* subclassing.
* subclassing.
* @throws IOException if an I/O error occurs while creating this stream
* @see SecurityManager#checkPermission
* @see SecurityManager#checkPermission
* @see java.io.SerializablePermission
* @see java.io.SerializablePermission
*/
*/
...
...
src/share/classes/java/util/jar/Attributes.java
浏览文件 @
a1227484
/*
/*
* Copyright (c) 1997, 201
2
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 201
3
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -527,7 +527,7 @@ public class Attributes implements Map<Object,Object>, Cloneable {
...
@@ -527,7 +527,7 @@ public class Attributes implements Map<Object,Object>, Cloneable {
* <code>Name</code> object for <code>Manifest-Version</code>
* <code>Name</code> object for <code>Manifest-Version</code>
* manifest attribute. This attribute indicates the version number
* manifest attribute. This attribute indicates the version number
* of the manifest standard to which a JAR file's manifest conforms.
* of the manifest standard to which a JAR file's manifest conforms.
* @see <a href="../../../../technotes/guides/jar/jar.html#JAR
Manifest">
* @see <a href="../../../../technotes/guides/jar/jar.html#JAR
_
Manifest">
* Manifest and Signature Specification</a>
* Manifest and Signature Specification</a>
*/
*/
public
static
final
Name
MANIFEST_VERSION
=
new
Name
(
"Manifest-Version"
);
public
static
final
Name
MANIFEST_VERSION
=
new
Name
(
"Manifest-Version"
);
...
@@ -535,7 +535,7 @@ public class Attributes implements Map<Object,Object>, Cloneable {
...
@@ -535,7 +535,7 @@ public class Attributes implements Map<Object,Object>, Cloneable {
/**
/**
* <code>Name</code> object for <code>Signature-Version</code>
* <code>Name</code> object for <code>Signature-Version</code>
* manifest attribute used when signing JAR files.
* manifest attribute used when signing JAR files.
* @see <a href="../../../../technotes/guides/jar/jar.html#JAR
Manifest">
* @see <a href="../../../../technotes/guides/jar/jar.html#JAR
_
Manifest">
* Manifest and Signature Specification</a>
* Manifest and Signature Specification</a>
*/
*/
public
static
final
Name
SIGNATURE_VERSION
=
new
Name
(
"Signature-Version"
);
public
static
final
Name
SIGNATURE_VERSION
=
new
Name
(
"Signature-Version"
);
...
...
src/share/classes/java/util/jar/JarEntry.java
浏览文件 @
a1227484
/*
/*
* Copyright (c) 1997, 20
05
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 20
13
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -81,6 +81,7 @@ class JarEntry extends ZipEntry {
...
@@ -81,6 +81,7 @@ class JarEntry extends ZipEntry {
*
*
* @return the <code>Manifest</code> <code>Attributes</code> for this
* @return the <code>Manifest</code> <code>Attributes</code> for this
* entry, or <code>null</code> if none
* entry, or <code>null</code> if none
* @throws IOException if an I/O error has occurred
*/
*/
public
Attributes
getAttributes
()
throws
IOException
{
public
Attributes
getAttributes
()
throws
IOException
{
return
attr
;
return
attr
;
...
...
src/share/classes/java/util/jar/JarFile.java
浏览文件 @
a1227484
/*
/*
* Copyright (c) 1997, 201
1
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 201
3
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -168,6 +168,7 @@ class JarFile extends ZipFile {
...
@@ -168,6 +168,7 @@ class JarFile extends ZipFile {
*
*
* @throws IllegalStateException
* @throws IllegalStateException
* may be thrown if the jar file has been closed
* may be thrown if the jar file has been closed
* @throws IOException if an I/O error has occurred
*/
*/
public
Manifest
getManifest
()
throws
IOException
{
public
Manifest
getManifest
()
throws
IOException
{
return
getManifestFromReference
();
return
getManifestFromReference
();
...
...
src/share/classes/java/util/stream/StreamSupport.java
浏览文件 @
a1227484
/*
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012,
2013,
Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -96,6 +96,7 @@ public final class StreamSupport {
...
@@ -96,6 +96,7 @@ public final class StreamSupport {
* <a href="package-summary.html#Non-Interference">Non-Interference</a> for
* <a href="package-summary.html#Non-Interference">Non-Interference</a> for
* more details.
* more details.
*
*
* @param <T> the type of stream elements
* @param supplier a {@code Supplier} of a {@code Spliterator}
* @param supplier a {@code Supplier} of a {@code Spliterator}
* @param characteristics Spliterator characteristics of the supplied
* @param characteristics Spliterator characteristics of the supplied
* {@code Spliterator}. The characteristics must be equal to
* {@code Spliterator}. The characteristics must be equal to
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录