Fix WebSocketEvent getter Visibility
protected instead of public
This commit is contained in:
committed by
Gunnar Hillert
parent
d66b3c4794
commit
b284307878
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user