Skip to content

Commit c526fc2

Browse files
committed
Polishing
1 parent 14ecc03 commit c526fc2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ configure(allprojects) { project ->
110110
"-Xlint:-deprecation", "-Xlint:-unchecked"]
111111

112112
compileJava {
113-
sourceCompatibility = 1.8 // can be switched to 10 for testing
113+
sourceCompatibility = 1.8
114114
targetCompatibility = 1.8
115115
options.encoding = "UTF-8"
116116
}
117117

118118
compileTestJava {
119-
sourceCompatibility = 1.8 // can be switched to 10 for testing
119+
sourceCompatibility = 1.8
120120
targetCompatibility = 1.8
121121
options.encoding = "UTF-8"
122122
options.compilerArgs += "-parameters"
@@ -179,7 +179,7 @@ configure(allprojects) { project ->
179179
"https://docs.oracle.com/javase/8/docs/api/",
180180
"https://docs.oracle.com/javaee/7/api/",
181181
"https://docs.oracle.com/cd/E13222_01/wls/docs90/javadocs/", // CommonJ
182-
"https://pic.dhe.ibm.com/infocenter/wasinfo/v7r0/topic/com.ibm.websphere.javadoc.doc/web/apidocs/",
182+
"https://www.ibm.com/support/knowledgecenter/SS7JFU_8.5.5/com.ibm.websphere.javadoc.doc/web/apidocs/",
183183
"https://glassfish.java.net/nonav/docs/v3/api/",
184184
"https://docs.jboss.org/jbossas/javadoc/4.0.5/connector/",
185185
"https://docs.jboss.org/jbossas/javadoc/7.1.2.Final/",

spring-core/src/main/java/org/springframework/core/ResolvableType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ public String toString() {
958958
* using the full generic type information for assignability checks.
959959
* For example: {@code ResolvableType.forClass(MyArrayList.class)}.
960960
* @param clazz the class to introspect ({@code null} is semantically
961-
* equivalent to {@code Object.class} for typical use cases here}
961+
* equivalent to {@code Object.class} for typical use cases here)
962962
* @return a {@link ResolvableType} for the specified class
963963
* @see #forClass(Class, Class)
964964
* @see #forClassWithGenerics(Class, Class...)

0 commit comments

Comments
 (0)