Update ControllerList.java

This commit is contained in:
GoToLoop 2016-07-09 08:24:55 -03:00 committed by GitHub
parent e2d8aad01f
commit 7b1b52f2d4
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ import java.util.RandomAccess;
* Stores objects of type ControllerInterface and CDrawable, mainly for internal use.
*/
public class ControllerList implements RandomAccess {
protected final List< ControllerInterface< ? >> controllers = new ArrayList< >( );
protected final List< ControllerInterface< ? > > controllers = new ArrayList< >( );
protected final List< CDrawable > drawables = new ArrayList< >( );
public ControllerList add( final ControllerInterface< ? > theController ) {