Merge "Null check intent before starting "learn more"." into nyc-mr1-dev

This commit is contained in:
TreeHugger Robot
2016-05-03 19:43:29 +00:00
committed by Android (Google) Code Review

View File

@@ -183,6 +183,10 @@ public class FingerprintEnrollIntroduction extends FingerprintEnrollBase
public void onClick(View widget) { public void onClick(View widget) {
Context ctx = widget.getContext(); Context ctx = widget.getContext();
Intent intent = HelpUtils.getHelpIntent(ctx, getURL(), ctx.getClass().getName()); Intent intent = HelpUtils.getHelpIntent(ctx, getURL(), ctx.getClass().getName());
if (intent == null) {
Log.w(LearnMoreSpan.TAG, "Null help intent.");
return;
}
try { try {
// This needs to be startActivityForResult even though we do not care about the // This needs to be startActivityForResult even though we do not care about the
// actual result because the help app needs to know about who invoked it. // actual result because the help app needs to know about who invoked it.