Ticket #269: Modified return type of Connection.getHistory to be a List of ConnectionHistory implementors.

This commit is contained in:
James Muehlner
2013-02-20 00:06:30 -08:00
parent 009eec14ec
commit e48630513d

View File

@@ -114,6 +114,6 @@ public interface Connection {
* of this connection, or if permission is * of this connection, or if permission is
* denied. * denied.
*/ */
public List<ConnectionRecord> getHistory() throws GuacamoleException; public List<? extends ConnectionRecord> getHistory() throws GuacamoleException;
} }