mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-504: Change c-style variable to camel case.
This commit is contained in:
@@ -99,12 +99,12 @@ public abstract class GuacamoleWebSocketTunnelEndpoint extends Endpoint {
|
|||||||
* @param session
|
* @param session
|
||||||
* The outbound WebSocket connection to close.
|
* The outbound WebSocket connection to close.
|
||||||
*
|
*
|
||||||
* @param guac_status
|
* @param guacStatus
|
||||||
* The status to use for the connection.
|
* The status to use for the connection.
|
||||||
*/
|
*/
|
||||||
private void closeConnection(Session session, GuacamoleStatus guac_status) {
|
private void closeConnection(Session session, GuacamoleStatus guacStatus) {
|
||||||
closeConnection(session, guac_status.getGuacamoleStatusCode(),
|
closeConnection(session, guacStatus.getGuacamoleStatusCode(),
|
||||||
guac_status.getWebSocketCode());
|
guacStatus.getWebSocketCode());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -81,14 +81,14 @@ public abstract class GuacamoleWebSocketTunnelServlet extends WebSocketServlet {
|
|||||||
* @param connection
|
* @param connection
|
||||||
* The WebSocket connection to close.
|
* The WebSocket connection to close.
|
||||||
*
|
*
|
||||||
* @param guac_status
|
* @param guacStatus
|
||||||
* The status to send.
|
* The status to send.
|
||||||
*/
|
*/
|
||||||
private static void closeConnection(Connection connection,
|
private static void closeConnection(Connection connection,
|
||||||
GuacamoleStatus guac_status) {
|
GuacamoleStatus guacStatus) {
|
||||||
|
|
||||||
closeConnection(connection, guac_status.getGuacamoleStatusCode(),
|
closeConnection(connection, guacStatus.getGuacamoleStatusCode(),
|
||||||
guac_status.getWebSocketCode());
|
guacStatus.getWebSocketCode());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -90,14 +90,14 @@ public abstract class GuacamoleWebSocketTunnelListener implements WebSocketListe
|
|||||||
* @param session
|
* @param session
|
||||||
* The outbound WebSocket connection to close.
|
* The outbound WebSocket connection to close.
|
||||||
*
|
*
|
||||||
* @param guac_status
|
* @param guacStatus
|
||||||
* The status to send.
|
* The status to send.
|
||||||
*/
|
*/
|
||||||
private void closeConnection(Session session,
|
private void closeConnection(Session session,
|
||||||
GuacamoleStatus guac_status) {
|
GuacamoleStatus guacStatus) {
|
||||||
|
|
||||||
closeConnection(session, guac_status.getGuacamoleStatusCode(),
|
closeConnection(session, guacStatus.getGuacamoleStatusCode(),
|
||||||
guac_status.getWebSocketCode());
|
guacStatus.getWebSocketCode());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -91,14 +91,14 @@ public abstract class GuacamoleWebSocketTunnelServlet extends WebSocketServlet {
|
|||||||
* @param outbound
|
* @param outbound
|
||||||
* The outbound WebSocket connection to close.
|
* The outbound WebSocket connection to close.
|
||||||
*
|
*
|
||||||
* @param guac_status
|
* @param guacStatus
|
||||||
* The status to send.
|
* The status to send.
|
||||||
*/
|
*/
|
||||||
private void closeConnection(WsOutbound outbound,
|
private void closeConnection(WsOutbound outbound,
|
||||||
GuacamoleStatus guac_status) {
|
GuacamoleStatus guacStatus) {
|
||||||
|
|
||||||
closeConnection(outbound, guac_status.getGuacamoleStatusCode(),
|
closeConnection(outbound, guacStatus.getGuacamoleStatusCode(),
|
||||||
guac_status.getWebSocketCode());
|
guacStatus.getWebSocketCode());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user