Fix WebSocketEvent getter Visibility

protected instead of public
This commit is contained in:
Gary Russell
2013-01-14 12:26:05 -05:00
committed by Gunnar Hillert
parent d66b3c4794
commit b284307878

View File

@@ -41,11 +41,11 @@ public class WebSocketEvent extends TcpConnectionEvent {
this.queryString = queryString;
}
protected String getPath() {
public String getPath() {
return path;
}
protected String getQueryString() {
public String getQueryString() {
return queryString;
}