Polishing

This commit is contained in:
Sam Brannen 2024-12-15 15:55:03 +01:00
parent aa7793a593
commit af83a152dc
2 changed files with 3 additions and 3 deletions

View File

@ -180,7 +180,7 @@ class RegisterReflectionReflectiveProcessorTests {
@RegisterReflection(memberCategories = MemberCategory.INVOKE_DECLARED_CONSTRUCTORS)
static class AnnotatedSimplePojo {
private String test;
String test;
AnnotatedSimplePojo(String test) {
this.test = test;

View File

@ -155,7 +155,7 @@ public abstract class AbstractWebSocketIntegrationTests {
}
private static class JettyHandshakeHandler extends DefaultHandshakeHandler {
static class JettyHandshakeHandler extends DefaultHandshakeHandler {
public JettyHandshakeHandler() {
super(new JettyRequestUpgradeStrategy());
@ -163,7 +163,7 @@ public abstract class AbstractWebSocketIntegrationTests {
}
private static class StandardHandshakeHandler extends DefaultHandshakeHandler {
static class StandardHandshakeHandler extends DefaultHandshakeHandler {
public StandardHandshakeHandler() {
super(new StandardWebSocketUpgradeStrategy());