mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 00:53:21 +00:00 
			
		
		
		
	GUACAMOLE-220: Remove unnecessary explicit type parameters.
This commit is contained in:
		| @@ -59,7 +59,7 @@ public abstract class AbstractUser extends AbstractIdentifiable | ||||
|      */ | ||||
|     @Override | ||||
|     public Map<String, String> getAttributes() { | ||||
|         return Collections.<String, String>emptyMap(); | ||||
|         return Collections.emptyMap(); | ||||
|     } | ||||
|  | ||||
|     /** | ||||
| @@ -94,7 +94,7 @@ public abstract class AbstractUser extends AbstractIdentifiable | ||||
|      */ | ||||
|     @Override | ||||
|     public List<ActivityRecord> getHistory() throws GuacamoleException { | ||||
|         return Collections.<ActivityRecord>emptyList(); | ||||
|         return Collections.emptyList(); | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|   | ||||
| @@ -39,7 +39,7 @@ public class AbstractUserGroup extends AbstractIdentifiable implements UserGroup | ||||
|      */ | ||||
|     @Override | ||||
|     public Map<String, String> getAttributes() { | ||||
|         return Collections.<String, String>emptyMap(); | ||||
|         return Collections.emptyMap(); | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|   | ||||
| @@ -84,7 +84,7 @@ public interface RelatedObjectSet { | ||||
|  | ||||
|         @Override | ||||
|         public Set<String> getObjects() throws GuacamoleException { | ||||
|             return Collections.<String>emptySet(); | ||||
|             return Collections.emptySet(); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|   | ||||
| @@ -155,13 +155,13 @@ public interface ObjectPermissionSet extends PermissionSet<ObjectPermission> { | ||||
|         @Override | ||||
|         public Collection<String> getAccessibleObjects(Collection<ObjectPermission.Type> permissions, | ||||
|                 Collection<String> identifiers) throws GuacamoleException { | ||||
|             return Collections.<String>emptySet(); | ||||
|             return Collections.emptySet(); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public Set<ObjectPermission> getPermissions() | ||||
|                 throws GuacamoleException { | ||||
|             return Collections.<ObjectPermission>emptySet(); | ||||
|             return Collections.emptySet(); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|   | ||||
| @@ -110,7 +110,7 @@ public interface SystemPermissionSet extends PermissionSet<SystemPermission> { | ||||
|         @Override | ||||
|         public Set<SystemPermission> getPermissions() | ||||
|                 throws GuacamoleException { | ||||
|             return Collections.<SystemPermission>emptySet(); | ||||
|             return Collections.emptySet(); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|   | ||||
| @@ -38,7 +38,7 @@ public class SimpleObjectPermissionSet implements ObjectPermissionSet { | ||||
|     /** | ||||
|      * The set of all permissions currently granted. | ||||
|      */ | ||||
|     private Set<ObjectPermission> permissions = Collections.<ObjectPermission>emptySet(); | ||||
|     private Set<ObjectPermission> permissions = Collections.emptySet(); | ||||
|  | ||||
|     /** | ||||
|      * Creates a new empty SimpleObjectPermissionSet. If you are not extending | ||||
|   | ||||
| @@ -34,7 +34,7 @@ public class SimpleRelatedObjectSet implements RelatedObjectSet { | ||||
|     /** | ||||
|      * A set containing the identifiers of all objects currently present. | ||||
|      */ | ||||
|     private Set<String> identifiers = Collections.<String>emptySet(); | ||||
|     private Set<String> identifiers = Collections.emptySet(); | ||||
|  | ||||
|     /** | ||||
|      * Creates a new empty SimpleRelatedObjectSet. If you are not extending | ||||
|   | ||||
| @@ -35,7 +35,7 @@ public class SimpleSystemPermissionSet implements SystemPermissionSet { | ||||
|     /** | ||||
|      * The set of all permissions currently granted. | ||||
|      */ | ||||
|     private Set<SystemPermission> permissions = Collections.<SystemPermission>emptySet(); | ||||
|     private Set<SystemPermission> permissions = Collections.emptySet(); | ||||
|  | ||||
|     /** | ||||
|      * Creates a new empty SimpleSystemPermissionSet. If you are not extending | ||||
|   | ||||
		Reference in New Issue
	
	Block a user