Merge "Fix typo. This has been bothering me a lot :)"

This commit is contained in:
Aaron Labiaga
2020-11-12 17:40:25 +00:00
committed by Android (Google) Code Review

View File

@@ -1319,8 +1319,8 @@ public final class ShortcutInfo implements Parcelable {
* system services even after it has been unpublished as a dynamic shortcut.
*/
@NonNull
public Builder setLongLived(boolean londLived) {
mIsLongLived = londLived;
public Builder setLongLived(boolean longLived) {
mIsLongLived = longLived;
return this;
}