Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e6cde6b authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix too many receivers Exception"

parents d3d0962c a865c3af
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -56,7 +56,7 @@ public class ControllerRendererPool {
        final Class<? extends ContextualCardController> clz =
        final Class<? extends ContextualCardController> clz =
                ContextualCardLookupTable.getCardControllerClass(cardType);
                ContextualCardLookupTable.getCardControllerClass(cardType);
        for (ContextualCardController controller : mControllers) {
        for (ContextualCardController controller : mControllers) {
            if (controller.getClass() == clz) {
            if (controller.getClass().getName().equals(clz.getName())) {
                Log.d(TAG, "Controller is already there.");
                Log.d(TAG, "Controller is already there.");
                return (T) controller;
                return (T) controller;
            }
            }