Polishing
This commit is contained in:
parent
aa7793a593
commit
af83a152dc
|
@ -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;
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue