Merge "TIF: Fix typos"

This commit is contained in:
Jae Seo
2016-01-13 17:50:19 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -116,7 +116,7 @@ final class TvInputHal implements Handler.Callback {
public void close() {
synchronized (mLock) {
if (mPtr != 0l) {
if (mPtr != 0L) {
nativeClose(mPtr);
}
}

View File

@@ -465,7 +465,7 @@ public final class TvInputManagerService extends SystemService {
try {
context = mContext.createPackageContextAsUser("android", 0, user);
} catch (NameNotFoundException e) {
Slog.e(TAG, "failed to create package contenxt as user " + user);
Slog.e(TAG, "failed to create package context as user " + user);
context = mContext;
}
return context.getContentResolver();