File tree Expand file tree Collapse file tree 6 files changed +16
-15
lines changed
spring-beans/src/main/java/org/springframework/beans/factory/config
spring-context/src/main/java/org/springframework
spring-messaging/src/main/java/org/springframework/messaging/simp
spring-orm/src/test/java/org/springframework/orm/jpa/hibernate/beans
spring-webflux/src/main/java/org/springframework/web/reactive/socket Expand file tree Collapse file tree 6 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2019 the original author or authors.
2
+ * Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -373,7 +373,7 @@ public void initParameterNameDiscovery(@Nullable ParameterNameDiscoverer paramet
373
373
374
374
/**
375
375
* Determine the name of the wrapped parameter/field.
376
- * @return the declared name (never {@code null})
376
+ * @return the declared name (may be {@code null} if unresolvable )
377
377
*/
378
378
@ Nullable
379
379
public String getDependencyName () {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2013 the original author or authors.
2
+ * Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -53,6 +53,6 @@ public enum ScopedProxyMode {
53
53
/**
54
54
* Create a class-based proxy (uses CGLIB).
55
55
*/
56
- TARGET_CLASS ;
56
+ TARGET_CLASS
57
57
58
58
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -42,6 +42,6 @@ public enum RegistrationPolicy {
42
42
* Registration should replace the affected MBean when attempting to register an MBean
43
43
* under a name that already exists.
44
44
*/
45
- REPLACE_EXISTING ;
45
+ REPLACE_EXISTING
46
46
47
47
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2013 the original author or authors.
2
+ * Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -41,6 +41,6 @@ public enum SimpMessageType {
41
41
42
42
DISCONNECT_ACK ,
43
43
44
- OTHER ;
44
+ OTHER
45
45
46
46
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2019 the original author or authors.
2
+ * Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
18
18
19
19
public enum BeanSource {
20
20
SPRING ,
21
- FALLBACK ;
21
+ FALLBACK
22
22
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
25
25
26
26
/**
27
27
* Representation of a WebSocket message.
28
- * <p>See static factory methods in {@link WebSocketSession} for creating messages
29
- * with the {@link org.springframework.core.io.buffer.DataBufferFactory
30
- * DataBufferFactory} for the session.
28
+ *
29
+ * <p>See static factory methods in {@link WebSocketSession} for creating messages with
30
+ * the {@link org.springframework.core.io.buffer. DataBufferFactory} for the session.
31
31
*
32
32
* @author Rossen Stoyanchev
33
33
* @since 5.0
@@ -139,6 +139,7 @@ public String toString() {
139
139
return "WebSocket " + this .type .name () + " message (" + this .payload .readableByteCount () + " bytes)" ;
140
140
}
141
141
142
+
142
143
/**
143
144
* WebSocket message types.
144
145
*/
@@ -158,7 +159,7 @@ public enum Type {
158
159
/**
159
160
* WebSocket pong.
160
161
*/
161
- PONG ;
162
+ PONG
162
163
}
163
164
164
165
}
You can’t perform that action at this time.
0 commit comments