Skip to content

Commit 991b8e9

Browse files
sslaviccbeams
authored andcommitted
Fix encoding issues in javadoc
Before this change javadoc in two classes had non-UTF-8 encoded characters. This caused building Spring API to fail in Java 1.7. Commit fixes this by replacing wrongly encoded characters with their UTF-8 equivalents. Issue: SPR-9097
1 parent 7ee821d commit 991b8e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-expression/src/main/java/org/springframework/expression/spel/ast/OpMultiply.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Implements the multiply operator. Conversions and promotions:
2626
* http://java.sun.com/docs/books/jls/third_edition/html/conversions.html Section 5.6.2:
2727
*
28-
* <p>If any of the operands is of a reference type, unboxing conversion (¤5.1.8) is performed. Then:<br>
28+
* <p>If any of the operands is of a reference type, unboxing conversion (§5.1.8) is performed. Then:<br>
2929
* If either operand is of type double, the other is converted to double.<br>
3030
* Otherwise, if either operand is of type float, the other is converted to float.<br>
3131
* Otherwise, if either operand is of type long, the other is converted to long.<br>

spring-test/src/main/java/org/springframework/test/context/support/DelegatingSmartContextLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* {@code DelegatingSmartContextLoader} is an implementation of the {@link SmartContextLoader}
3535
* SPI that delegates to a set of <em>candidate</em> SmartContextLoaders (i.e.,
3636
* {@link GenericXmlContextLoader} and {@link AnnotationConfigContextLoader}) to
37-
* determine which context loader is appropriate for a given test classÕs configuration.
37+
* determine which context loader is appropriate for a given test class's configuration.
3838
* Each candidate is given a chance to {@link #processContextConfiguration process} the
3939
* {@link ContextConfigurationAttributes} for each class in the test class hierarchy that
4040
* is annotated with {@link ContextConfiguration @ContextConfiguration}, and the candidate

0 commit comments

Comments
 (0)