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);
|
return Collections.unmodifiableMap(pathParameters);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getProtocolVersion()
|
|
||||||
{
|
|
||||||
return getProtocolVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getQueryString()
|
public String getQueryString()
|
||||||
{
|
{
|
||||||
|
@ -300,7 +294,7 @@ public class JsrSession extends WebSocketSession implements javax.websocket.Sess
|
||||||
@Override
|
@Override
|
||||||
public Principal getUserPrincipal()
|
public Principal getUserPrincipal()
|
||||||
{
|
{
|
||||||
// TODO Auto-generated method stub
|
// FIXME return getUpgradeRequest().getUserPrincipal();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue