You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by rs...@apache.org on 2017/02/13 19:41:21 UTC

svn commit: r1782839 - in /geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json: JsonPatch.java JsonPatchBuilder.java

Author: rsandtner
Date: Mon Feb 13 19:41:21 2017
New Revision: 1782839

URL: http://svn.apache.org/viewvc?rev=1782839&view=rev
Log:
GERONIMO-6558 fixed javadoc errors

Modified:
    geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatch.java
    geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatchBuilder.java

Modified: geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatch.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatch.java?rev=1782839&r1=1782838&r2=1782839&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatch.java (original)
+++ geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatch.java Mon Feb 13 19:41:21 2017
@@ -31,11 +31,9 @@ package javax.json;
  *   { "path": "/a/b/c", "op": "add", "value": "foo" }
  * ]
  * </pre>
- * </p>
  * <p>
  * The 'operations' are performed in the order they are in the JsonPatch and applied
  * to the 'result' JSON document from the previous operation.
- * </p>
  * <p>
  * Supported operations are
  * <ul>
@@ -46,14 +44,11 @@ package javax.json;
  * <li>COPY}</li>
  * <li>TEST}</li>
  * </ul>
- * </p>
  * <p>
  * for more infos see <a href="https://tools.ietf.org/html/rfc6902">RFC-6902</a>
- * </p>
  * <p>
  * NOTICE: All JsonValues are immutable and therefore every {@code apply()} method will return
  * new references when the {@link JsonPatch} is applied.
- * </p>
  *
  * @since 1.1
  */

Modified: geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatchBuilder.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatchBuilder.java?rev=1782839&r1=1782838&r2=1782839&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatchBuilder.java (original)
+++ geronimo/specs/trunk/geronimo-json_1.1_spec/src/main/java/javax/json/JsonPatchBuilder.java Mon Feb 13 19:41:21 2017
@@ -24,7 +24,6 @@ package javax.json;
  * The order of the operations corresponds to the order they are builded.
  * <p>
  * NOTICE: A JsonPatchBuilder contains state and therefore is NOT threadsafe and should not be used concurrently.
- * </p>
  * <p>
  * The following {@link JsonPatch}
  * <pre>
@@ -59,11 +58,9 @@ package javax.json;
  *                           .build();
  *
  * </pre>
- * </p>
  * <p>
  * An instance of a JsonPatchBuilder can be reused for another {@link JsonPatch} after
  * the {@link #build()}-Method was called.
- * </p>
  */
 public interface JsonPatchBuilder {