From 4fd4105367d0233033aa53743abcb6153bed67f6 Mon Sep 17 00:00:00 2001 From: GoToLoop Date: Sat, 9 Jul 2016 22:09:59 -0300 Subject: [PATCH] Update ControllerList.java --- src/controlP5/ControllerList.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controlP5/ControllerList.java b/src/controlP5/ControllerList.java index 6d1e510..242b825 100755 --- a/src/controlP5/ControllerList.java +++ b/src/controlP5/ControllerList.java @@ -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< ? extends ControllerInterface< ? > > > controllers = new ArrayList< >( ); + protected final List< ControllerInterface< ? > > controllers = new ArrayList< >( ); protected final List< CDrawable > drawables = new ArrayList< >( ); public ControllerList add( final ControllerInterface< ? extends ControllerInterface< ? > > theController ) { @@ -81,7 +81,7 @@ public class ControllerList implements RandomAccess { return controllers.get( theIndex ); } - public List< ControllerInterface< ? extends ControllerInterface< ? > > > get( ) { + public List< ControllerInterface< ? > > get( ) { return controllers; }