mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 00:53:21 +00:00 
			
		
		
		
	Remove redundant public modifiers.
This commit is contained in:
		| @@ -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(); | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -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(); | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -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; | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -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; | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -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; | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -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; | ||||
|  | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user