Skip to content

Commit aab9d6e

Browse files
committed
allow build on jdk14
Signed-off-by: Lukas Jungmann <[email protected]>
1 parent e24d3fa commit aab9d6e

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ language: java
44

55
jdk:
66
- openjdk11
7+
- openjdk14
78

89
cache:
910
directories:

api/src/main/javadoc/overview.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<html>
22
<!--
33
4-
Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2013, 2020 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0, which is available at
@@ -40,7 +40,7 @@
4040
it is often not as efficient as the streaming model and requires more memory.
4141
The object model generates JSON output by navigating the entire tree at once.
4242

43-
<h2>The Streaming API</h2>
43+
<h1>The Streaming API</h1>
4444
<p>The streaming API is similar to the StAX API for XML and consists of the
4545
interfaces {@link jakarta.json.stream.JsonParser} and
4646
{@link jakarta.json.stream.JsonGenerator}. {@code JsonParser}
@@ -65,7 +65,7 @@ <h2>The Streaming API</h2>
6565
JSON data efficiently. Other JSON frameworks (such as JSON binding) can be
6666
implemented using this API.</p>
6767

68-
<h2>The Object Model API</h2>
68+
<h1>The Object Model API</h1>
6969
<p>The object model API is similar to the DOM API for XML. It is a high-level
7070
API that provides immutable object models for JSON object and array structures.
7171
These JSON structures are represented as object models using the Java types
@@ -98,7 +98,7 @@ <h2>The Object Model API</h2>
9898
how to write an empty {@code JsonObject} model using the interface
9999
{@code JsonWriter}.
100100

101-
<h2>JSON Pointer, JSON Patch, and JSON Merge Patch</h2>
101+
<h1>JSON Pointer, JSON Patch, and JSON Merge Patch</h1>
102102
Jakarta JSON Processing supports the latest standard on
103103
<a href="http://tools.ietf.org/html/rfc6901">JSON Pointer</a>,
104104
<a Href="http://tools.ietf.org/html/rfc6902">JSON Patch</a>, and

impl/src/main/javadoc/overview.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
it is often not as efficient as the streaming model and requires more memory.
4141
The object model generates JSON output by navigating the entire tree at once.
4242

43-
<h2>The Streaming API</h2>
43+
<h1>The Streaming API</h1>
4444
<p>The streaming API is similar to the StAX API for XML and consists of the
4545
interfaces {@link jakarta.json.stream.JsonParser} and
4646
{@link jakarta.json.stream.JsonGenerator}. {@code JsonParser}
@@ -65,7 +65,7 @@ <h2>The Streaming API</h2>
6565
JSON data efficiently. Other JSON frameworks (such as JSON binding) can be
6666
implemented using this API.</p>
6767

68-
<h2>The Object Model API</h2>
68+
<h1>The Object Model API</h1>
6969
<p>The object model API is similar to the DOM API for XML. It is a high-level
7070
API that provides immutable object models for JSON object and array structures.
7171
These JSON structures are represented as object models using the Java types
@@ -98,7 +98,7 @@ <h2>The Object Model API</h2>
9898
how to write an empty {@code JsonObject} model using the interface
9999
{@code JsonWriter}.
100100

101-
<h2>JSON Pointer, JSON Patch, and JSON Merge Patch</h2>
101+
<h1>JSON Pointer, JSON Patch, and JSON Merge Patch</h1>
102102
Jakarta JSON Processing supports the latest standard on
103103
<a href="http://tools.ietf.org/html/rfc6901">JSON Pointer</a>,
104104
<a Href="http://tools.ietf.org/html/rfc6902">JSON Patch</a>, and

0 commit comments

Comments
 (0)