Skip to content

Commit

Permalink
Avoid infinite recursive loop
Browse files Browse the repository at this point in the history
Looks like this should be "super." instead of "super_"
Found by spotbugs.

Change-Id: I83d096eee332361d62e783581bfa15017536081d
Reviewed-by: BogDan Vatra <[email protected]>
  • Loading branch information
misery committed Mar 3, 2018
1 parent 78e9299 commit 7fda40e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event)
}
public boolean super_dispatchPopulateAccessibilityEvent(AccessibilityEvent event)
{
return super_dispatchPopulateAccessibilityEvent(event);
return super.dispatchPopulateAccessibilityEvent(event);
}
//---------------------------------------------------------------------------

Expand Down

0 comments on commit 7fda40e

Please sign in to comment.