@@ -261,7 +261,7 @@ public final void setIndent(String indent) {
261
261
* level of indentation, or the newline style, to accommodate various OS styles.
262
262
*
263
263
* @param formattingStyle the formatting style to use, must not be {@code null}.
264
- * @since $next-version$
264
+ * @since 2.11.0
265
265
*/
266
266
public final void setFormattingStyle (FormattingStyle formattingStyle ) {
267
267
this .formattingStyle = Objects .requireNonNull (formattingStyle );
@@ -286,7 +286,7 @@ public final void setFormattingStyle(FormattingStyle formattingStyle) {
286
286
* Returns the pretty printing style used by this writer.
287
287
*
288
288
* @return the {@code FormattingStyle} that will be used.
289
- * @since $next-version$
289
+ * @since 2.11.0
290
290
*/
291
291
public final FormattingStyle getFormattingStyle () {
292
292
return formattingStyle ;
@@ -339,7 +339,7 @@ public boolean isLenient() {
339
339
*
340
340
* @param strictness the new strictness of this writer. May not be {@code null}.
341
341
* @see #getStrictness()
342
- * @since $next-version$
342
+ * @since 2.11.0
343
343
*/
344
344
public final void setStrictness (Strictness strictness ) {
345
345
this .strictness = Objects .requireNonNull (strictness );
@@ -349,7 +349,7 @@ public final void setStrictness(Strictness strictness) {
349
349
* Returns the {@linkplain Strictness strictness} of this writer.
350
350
*
351
351
* @see #setStrictness(Strictness)
352
- * @since $next-version$
352
+ * @since 2.11.0
353
353
*/
354
354
public final Strictness getStrictness () {
355
355
return strictness ;
0 commit comments