TIF: Fix typos

Change-Id: I82f7fc68840d9fcdc579fc451e9d295c04512083
This commit is contained in:
Jae Seo
2016-01-12 23:13:14 -08:00
parent 87af9a03f1
commit 2a2b299dca
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();