Skip to content

Commit ae6c64a

Browse files
committed
Fix Javadoc errors
1 parent c1bd924 commit ae6c64a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/config/PlaceholderConfigurerSupport.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public abstract class PlaceholderConfigurerSupport extends PropertyResourceConfi
100100
/** Default value separator: {@value}. */
101101
public static final String DEFAULT_VALUE_SEPARATOR = ":";
102102

103-
/** Default escape character: {@value}. */
103+
/** Default escape character: {@code '\'}. */
104104
public static final Character DEFAULT_ESCAPE_CHARACTER = '\\';
105105

106106
/** Defaults to {@value #DEFAULT_PLACEHOLDER_PREFIX}. */
@@ -113,7 +113,7 @@ public abstract class PlaceholderConfigurerSupport extends PropertyResourceConfi
113113
@Nullable
114114
protected String valueSeparator = DEFAULT_VALUE_SEPARATOR;
115115

116-
/** Defaults to {@value #DEFAULT_ESCAPE_CHARACTER}. */
116+
/** Defaults to {@link #DEFAULT_ESCAPE_CHARACTER}. */
117117
@Nullable
118118
protected Character escapeCharacter = DEFAULT_ESCAPE_CHARACTER;
119119

@@ -161,7 +161,7 @@ public void setValueSeparator(@Nullable String valueSeparator) {
161161
* Specify the escape character to use to ignore placeholder prefix
162162
* or value separator, or {@code null} if no escaping should take
163163
* place.
164-
* <p>Default is {@value #DEFAULT_ESCAPE_CHARACTER}.
164+
* <p>Default is {@link #DEFAULT_ESCAPE_CHARACTER}.
165165
* @since 6.2
166166
*/
167167
public void setEscapeCharacter(@Nullable Character escsEscapeCharacter) {

spring-core/src/main/java/org/springframework/util/SystemPropertyUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public abstract class SystemPropertyUtils {
4444
/** Value separator for system property placeholders: {@value}. */
4545
public static final String VALUE_SEPARATOR = ":";
4646

47-
/** Default escape character: {@value}. */
47+
/** Default escape character: {@code '\'}. */
4848
public static final Character ESCAPE_CHARACTER = '\\';
4949

5050

spring-webmvc/src/main/java/org/springframework/web/servlet/view/document/AbstractPdfView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -138,7 +138,7 @@ protected void prepareWriter(Map<String, Object> model, PdfWriter writer, HttpSe
138138
* The subclass can either have fixed preferences or retrieve
139139
* them from bean properties defined on the View.
140140
* @return an int containing the bits information against PdfWriter definitions
141-
* @see com.lowagie.text.pdf.PdfWriter#AllowPrinting
141+
* @see com.lowagie.text.pdf.PdfWriter#ALLOW_PRINTING
142142
* @see com.lowagie.text.pdf.PdfWriter#PageLayoutSinglePage
143143
*/
144144
protected int getViewerPreferences() {

0 commit comments

Comments
 (0)