@@ -2889,9 +2889,8 @@ public static void Write(
2889
2889
* to a data stream in UTF-8. If the object is convertible to a CBOR
2890
2890
* map, or to a CBOR object that contains CBOR maps, the keys to those
2891
2891
* maps are written out to the JSON string in an undefined order. The
2892
- * example code given in <see
2893
- *
2894
- cref='PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)'/>
2892
+ * example code given in
2893
+ * <b>PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)</b>
2895
2894
* can be used to write out certain keys of a CBOR map in a given order
2896
2895
* to a JSON string.
2897
2896
* @param obj The parameter {@code obj} is an arbitrary object. Can be null.
@@ -4505,9 +4504,8 @@ public CBORObject Set(Object key, Object valueOb) {
4505
4504
* example, <code>22("Test")</code> is converted to <code>"Test"</code> and
4506
4505
* <code>true</code> is converted to <code>"true"</code>). If, after such
4507
4506
* conversion, two or more map keys are identical, this method throws a
4508
- * CBORException. The example code given in <see
4509
- *
4510
- cref='PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)'/>
4507
+ * CBORException. The example code given in
4508
+ * <b>PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)</b>
4511
4509
* can be used to write out certain keys of a CBOR map in a given order
4512
4510
* to a JSON string.</p>
4513
4511
* @return A text string.
@@ -4609,9 +4607,8 @@ public String ToJSONString(JSONOptions options) {
4609
4607
* human-readable, not machine-readable, the format is not intended to
4610
4608
* be parsed, and the format may change at any time. The returned
4611
4609
* string is not necessarily in JavaScript object Notation (JSON); to
4612
- * convert CBOR objects to JSON strings, use the <see
4613
- *
4614
- cref='PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)'/>
4610
+ * convert CBOR objects to JSON strings, use the
4611
+ * <b>PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)</b>
4615
4612
* method instead.
4616
4613
* @return A text representation of this object.
4617
4614
*/
@@ -4790,9 +4787,8 @@ public CBORObject UntagOne() {
4790
4787
* format, as in the ToJSONString method, and writes that string to a
4791
4788
* data stream in UTF-8. If the CBOR object contains CBOR maps, or is a
4792
4789
* CBOR map, the keys to the map are written out to the JSON string in
4793
- * an undefined order. The example code given in <see
4794
- *
4795
- cref='PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)'/>
4790
+ * an undefined order. The example code given in
4791
+ * <b>PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)</b>
4796
4792
* can be used to write out certain keys of a CBOR map in a given order
4797
4793
* to a JSON string.
4798
4794
* @param outputStream A writable data stream.
@@ -4815,9 +4811,8 @@ public void WriteJSONTo(OutputStream outputStream) throws java.io.IOException {
4815
4811
* data stream in UTF-8, using the given JSON options to control the
4816
4812
* encoding process. If the CBOR object contains CBOR maps, or is a
4817
4813
* CBOR map, the keys to the map are written out to the JSON string in
4818
- * an undefined order. The example code given in <see
4819
- *
4820
- cref='PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)'/>
4814
+ * an undefined order. The example code given in
4815
+ * <b>PeterO.Cbor.CBORObject.ToJSONString(PeterO.Cbor.JSONOptions)</b>
4821
4816
* can be used to write out certain keys of a CBOR map in a given order
4822
4817
* to a JSON string.
4823
4818
* @param outputStream A writable data stream.
0 commit comments