File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
src/main/java/com/fasterxml/jackson/core Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ public JsonPointer pathAsPointer(boolean includeRoot) {
284
284
* @param srcRef Source reference needed to construct location instance
285
285
*
286
286
* @return Location pointing to the point where the context
287
- * start marker was found (or written); never ` null` .
287
+ * start marker was found (or written); never {@code null} .
288
288
*
289
289
* @since 2.13
290
290
*/
@@ -293,6 +293,9 @@ public JsonLocation startLocation(ContentReference srcRef) {
293
293
}
294
294
295
295
/**
296
+ * @param srcRef Source reference needed to construct location instance
297
+ * @return Location pointing to the point where the context
298
+ * start marker was found (or written); never {@code null}.
296
299
* @since 2.9
297
300
* @deprecated Since 2.13 use {@link #startLocation} instead
298
301
*/
Original file line number Diff line number Diff line change @@ -109,6 +109,8 @@ public static int releaseBuffers() {
109
109
/**
110
110
* Not to be used any more: call {@link JsonStringEncoder#getInstance()} instead.
111
111
*
112
+ * @return {@code JsonStringEncoder} instance to use.
113
+ *
112
114
* @deprecated Since 2.10 (note: was accidentally removed but reintroduced as deprecated
113
115
* in 2.12.5, to be removed from 3.0)
114
116
*/
@@ -121,6 +123,9 @@ public static JsonStringEncoder getJsonStringEncoder() {
121
123
* Not to be used any more: call {@link JsonStringEncoder#getInstance()} (and then
122
124
* {@code encodeAsUTF8()}) instead.
123
125
*
126
+ * @param text String to encode
127
+ * @return String encoded as UTF-8 bytes.
128
+ *
124
129
* @deprecated Since 2.10 (note: was accidentally removed but reintroduced as deprecated
125
130
* in 2.12.5, to be removed from 3.0)
126
131
*/
You can’t perform that action at this time.
0 commit comments