Skip to content

Commit af83a15

Browse files
committed
Polishing
1 parent aa7793a commit af83a15

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-core/src/test/java/org/springframework/aot/hint/annotation/RegisterReflectionReflectiveProcessorTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public void setDescription(String description) {
180180
@RegisterReflection(memberCategories = MemberCategory.INVOKE_DECLARED_CONSTRUCTORS)
181181
static class AnnotatedSimplePojo {
182182

183-
private String test;
183+
String test;
184184

185185
AnnotatedSimplePojo(String test) {
186186
this.test = test;

spring-websocket/src/test/java/org/springframework/web/socket/AbstractWebSocketIntegrationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,15 @@ protected CompletableFuture<WebSocketSession> execute(WebSocketHandler clientHan
155155
}
156156

157157

158-
private static class JettyHandshakeHandler extends DefaultHandshakeHandler {
158+
static class JettyHandshakeHandler extends DefaultHandshakeHandler {
159159

160160
public JettyHandshakeHandler() {
161161
super(new JettyRequestUpgradeStrategy());
162162
}
163163
}
164164

165165

166-
private static class StandardHandshakeHandler extends DefaultHandshakeHandler {
166+
static class StandardHandshakeHandler extends DefaultHandshakeHandler {
167167

168168
public StandardHandshakeHandler() {
169169
super(new StandardWebSocketUpgradeStrategy());

0 commit comments

Comments
 (0)