Polishing
This commit is contained in:
parent
aa7793a593
commit
af83a152dc
|
@ -180,7 +180,7 @@ class RegisterReflectionReflectiveProcessorTests {
|
||||||
@RegisterReflection(memberCategories = MemberCategory.INVOKE_DECLARED_CONSTRUCTORS)
|
@RegisterReflection(memberCategories = MemberCategory.INVOKE_DECLARED_CONSTRUCTORS)
|
||||||
static class AnnotatedSimplePojo {
|
static class AnnotatedSimplePojo {
|
||||||
|
|
||||||
private String test;
|
String test;
|
||||||
|
|
||||||
AnnotatedSimplePojo(String test) {
|
AnnotatedSimplePojo(String test) {
|
||||||
this.test = 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() {
|
public JettyHandshakeHandler() {
|
||||||
super(new JettyRequestUpgradeStrategy());
|
super(new JettyRequestUpgradeStrategy());
|
||||||
|
@ -163,7 +163,7 @@ public abstract class AbstractWebSocketIntegrationTests {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static class StandardHandshakeHandler extends DefaultHandshakeHandler {
|
static class StandardHandshakeHandler extends DefaultHandshakeHandler {
|
||||||
|
|
||||||
public StandardHandshakeHandler() {
|
public StandardHandshakeHandler() {
|
||||||
super(new StandardWebSocketUpgradeStrategy());
|
super(new StandardWebSocketUpgradeStrategy());
|
||||||
|
|
Loading…
Reference in New Issue