Skip to content

Commit c0fbf6f

Browse files
committed
Polishing
1 parent 399b846 commit c0fbf6f

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2020 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.
@@ -371,7 +371,7 @@ public void initParameterNameDiscovery(@Nullable ParameterNameDiscoverer paramet
371371

372372
/**
373373
* Determine the name of the wrapped parameter/field.
374-
* @return the declared name (may be {@code null})
374+
* @return the declared name (may be {@code null} if unresolvable)
375375
*/
376376
@Nullable
377377
public String getDependencyName() {

spring-webflux/src/main/java/org/springframework/web/reactive/socket/WebSocketMessage.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626

2727
/**
2828
* Representation of a WebSocket message.
29-
* <p>See static factory methods in {@link WebSocketSession} for creating messages
30-
* with the {@link org.springframework.core.io.buffer.DataBufferFactory
31-
* DataBufferFactory} for the session.
29+
*
30+
* <p>See static factory methods in {@link WebSocketSession} for creating messages with
31+
* the {@link org.springframework.core.io.buffer.DataBufferFactory} for the session.
3232
*
3333
* @author Rossen Stoyanchev
3434
* @since 5.0
@@ -140,6 +140,7 @@ public String toString() {
140140
return "WebSocket " + this.type.name() + " message (" + this.payload.readableByteCount() + " bytes)";
141141
}
142142

143+
143144
/**
144145
* WebSocket message types.
145146
*/

0 commit comments

Comments
 (0)