Skip to content

Commit 45df1d9

Browse files
committed
Javadoc fixes
1 parent 214d0d7 commit 45df1d9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

spring-core/src/main/java/org/springframework/util/concurrent/SettableListenableFuture.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@
2424
import org.springframework.util.Assert;
2525

2626
/**
27-
* A {@link org.springframework.util.concurrent.ListenableFuture ListenableFuture}
28-
* whose value can be set via {@link #set(T)} or {@link #setException(Throwable)}.
29-
* It may also be cancelled.
27+
* A {@link ListenableFuture} whose value can be set via {@link #set(Object)}
28+
* or {@link #setException(Throwable)}. It may also get cancelled.
3029
*
3130
* <p>Inspired by {@code com.google.common.util.concurrent.SettableFuture}.
3231
*

spring-web/src/main/java/org/springframework/web/util/UriUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public static Object[] encodeUriVariables(Object... uriVariables) {
218218

219219
/**
220220
* Decode the given encoded URI component.
221-
* <p>See {@link StringUtils#uriDecode(String, Charset) for the decoding rules.
221+
* <p>See {@link StringUtils#uriDecode(String, Charset)} for the decoding rules.
222222
* @param source the encoded String
223223
* @param encoding the encoding
224224
* @return the decoded value

0 commit comments

Comments
 (0)