Fix WebSocketEvent getter Visibility

protected instead of public
This commit is contained in:
Gary Russell
2013-01-14 12:26:05 -05:00
parent 50d34a60d4
commit a0c87a49e7

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;
}