Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Feb 24, 2020
1 parent 399b846 commit c0fbf6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2019 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -371,7 +371,7 @@ public void initParameterNameDiscovery(@Nullable ParameterNameDiscoverer paramet

/**
* Determine the name of the wrapped parameter/field.
* @return the declared name (may be {@code null})
* @return the declared name (may be {@code null} if unresolvable)
*/
@Nullable
public String getDependencyName() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

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


/**
* WebSocket message types.
*/
Expand Down

0 comments on commit c0fbf6f

Please sign in to comment.