Skip to content

Commit 88f93f3

Browse files
committedAug 26, 2020
8251561: Fix doclint warnings in the java.xml package
Reviewed-by: lancea, naoto, rriggs, erikj, alanb
1 parent f879698 commit 88f93f3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+418
-301
lines changed
 

‎make/Docs.gmk

+2
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,8 @@ define SetupApiDocsGenerationBody
298298
# Create a string like "-Xdoclint:all,-syntax,-html,..."
299299
$1_OPTIONS += -Xdoclint:all,$$(call CommaList, $$(addprefix -, \
300300
$$(JAVADOC_DISABLED_DOCLINT)))
301+
# Ignore the doclint warnings in the W3C DOM package
302+
$1_OPTIONS += -Xdoclint/package:-org.w3c.*
301303

302304
$1_DOC_TITLE := $$($1_LONG_NAME)<br>Version $$(VERSION_SPECIFICATION) API \
303305
Specification

‎src/java.xml/share/classes/javax/xml/stream/FactoryConfigurationError.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -36,6 +36,9 @@
3636
public class FactoryConfigurationError extends Error {
3737
private static final long serialVersionUID = -2994412584589975744L;
3838

39+
/**
40+
* The nested exception.
41+
*/
3942
Exception nested;
4043

4144
/**

0 commit comments

Comments
 (0)
Please sign in to comment.