@@ -261,7 +261,7 @@ public final void setIndent(String indent) {
261261 * level of indentation, or the newline style, to accommodate various OS styles.
262262 *
263263 * @param formattingStyle the formatting style to use, must not be {@code null}.
264- * @since $next-version$
264+ * @since 2.11.0
265265 */
266266 public final void setFormattingStyle (FormattingStyle formattingStyle ) {
267267 this .formattingStyle = Objects .requireNonNull (formattingStyle );
@@ -286,7 +286,7 @@ public final void setFormattingStyle(FormattingStyle formattingStyle) {
286286 * Returns the pretty printing style used by this writer.
287287 *
288288 * @return the {@code FormattingStyle} that will be used.
289- * @since $next-version$
289+ * @since 2.11.0
290290 */
291291 public final FormattingStyle getFormattingStyle () {
292292 return formattingStyle ;
@@ -339,7 +339,7 @@ public boolean isLenient() {
339339 *
340340 * @param strictness the new strictness of this writer. May not be {@code null}.
341341 * @see #getStrictness()
342- * @since $next-version$
342+ * @since 2.11.0
343343 */
344344 public final void setStrictness (Strictness strictness ) {
345345 this .strictness = Objects .requireNonNull (strictness );
@@ -349,7 +349,7 @@ public final void setStrictness(Strictness strictness) {
349349 * Returns the {@linkplain Strictness strictness} of this writer.
350350 *
351351 * @see #setStrictness(Strictness)
352- * @since $next-version$
352+ * @since 2.11.0
353353 */
354354 public final Strictness getStrictness () {
355355 return strictness ;
0 commit comments