418603 - cannot specify a custom ServerEndpointConfig.Configurator

+ Fixing bad assumption on annotations possibly being null
This commit is contained in:
Joakim Erdfelt 2013-10-03 09:12:53 -07:00
parent 562cf009f0
commit d2c3d7cf09
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public class AnnotatedServerEndpointConfig implements ServerEndpointConfig
userProperties.putAll(baseConfig.getUserProperties()); userProperties.putAll(baseConfig.getUserProperties());
} }
if (anno.configurator() == null) if (anno.configurator() == ServerEndpointConfig.Configurator.class)
{ {
if (configr != null) if (configr != null)
{ {