JSR-356 - Fixing StackOverflowError on Session.getProtocolVersion()
This commit is contained in:
parent
2362a4e8b3
commit
6bd2f8fd3e
|
@ -273,12 +273,6 @@ public class JsrSession extends WebSocketSession implements javax.websocket.Sess
|
|||
return Collections.unmodifiableMap(pathParameters);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getProtocolVersion()
|
||||
{
|
||||
return getProtocolVersion();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getQueryString()
|
||||
{
|
||||
|
@ -300,7 +294,7 @@ public class JsrSession extends WebSocketSession implements javax.websocket.Sess
|
|||
@Override
|
||||
public Principal getUserPrincipal()
|
||||
{
|
||||
// TODO Auto-generated method stub
|
||||
// FIXME return getUpgradeRequest().getUserPrincipal();
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue