Remove redundant public modifiers.

This commit is contained in:
Michael Jumper
2012-08-09 12:45:40 -07:00
parent e911a615bc
commit 66b222bc5c
6 changed files with 6 additions and 6 deletions

View File

@@ -16,6 +16,6 @@ public interface CredentialEvent {
* @return The current credentials of the user triggering the event, if
* any, or null if no credentials are associated with the event.
*/
public Credentials getCredentials();
Credentials getCredentials();
}

View File

@@ -15,6 +15,6 @@ public interface TunnelEvent {
* @return The tunnel associated with this event, if any, or null if no
* tunnel is associated with this event.
*/
public GuacamoleTunnel getTunnel();
GuacamoleTunnel getTunnel();
}

View File

@@ -23,7 +23,7 @@ public interface AuthenticationFailureListener {
* throwing an exception will NOT cause the
* authentication failure to be canceled.
*/
public void authenticationFailed(AuthenticationFailureEvent e)
void authenticationFailed(AuthenticationFailureEvent e)
throws GuacamoleException;
}

View File

@@ -28,7 +28,7 @@ public interface AuthenticationSuccessListener {
* exception will also cancel the authentication
* success.
*/
public boolean authenticationSucceeded(AuthenticationSuccessEvent e)
boolean authenticationSucceeded(AuthenticationSuccessEvent e)
throws GuacamoleException;
}

View File

@@ -25,7 +25,7 @@ public interface TunnelCloseListener {
* tunnel close event. Throwing an exception
* will also stop the tunnel from being closed.
*/
public boolean tunnelClosed(TunnelCloseEvent e)
boolean tunnelClosed(TunnelCloseEvent e)
throws GuacamoleException;
}

View File

@@ -26,7 +26,7 @@ public interface TunnelConnectListener {
* will also stop the tunnel from being made
* visible to the session.
*/
public boolean tunnelConnected(TunnelConnectEvent e)
boolean tunnelConnected(TunnelConnectEvent e)
throws GuacamoleException;
}