Skip to content

Commit

Permalink
Add missing dependency and remove warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Apr 9, 2024
1 parent 246f291 commit c05b4bc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions framework-docs/framework-docs.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ dependencies {
api("jakarta.validation:jakarta.validation-api")
api("org.aspectj:aspectjweaver")
api("io.projectreactor.netty:reactor-netty-http")
api("org.eclipse.jetty.websocket:jetty-websocket-jetty-api")

implementation(project(":spring-core-test"))
implementation("org.assertj:assertj-core")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/

@file:Suppress("UNUSED_PARAMETER")
package org.springframework.docs.web.websocket.stomp.websocketstompdestinationseparator

import org.springframework.messaging.handler.annotation.DestinationVariable
Expand All @@ -26,7 +27,7 @@ import org.springframework.stereotype.Controller
class RedController {

@MessageMapping("blue.{green}")
fun handleGreen(@DestinationVariable green: String?) {
fun handleGreen(@DestinationVariable green: String) {
// ...
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/

@file:Suppress("DEPRECATION")
package org.springframework.docs.web.websocket.stomp.websocketstomphandlebrokerrelayconfigure

import org.springframework.context.annotation.Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/

@file:Suppress("UNUSED_VARIABLE")
package org.springframework.docs.web.websocket.stomp.websocketstompinterceptors

import org.springframework.messaging.Message
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import org.springframework.web.socket.config.annotation.WebSocketMessageBrokerCo
import org.springframework.web.socket.server.jetty.JettyRequestUpgradeStrategy
import org.springframework.web.socket.server.support.DefaultHandshakeHandler
import java.time.Duration
import java.util.function.Consumer

// tag::snippet[]
@Configuration
Expand Down

0 comments on commit c05b4bc

Please sign in to comment.