summaryrefslogtreecommitdiffstats
path: root/core/java/android/app/ContextImpl.java
diff options
context:
space:
mode:
authorJosh Guilfoyle <jasta00@gmail.com>2011-02-04 11:22:05 -0800
committerJosh Guilfoyle <jasta00@gmail.com>2011-02-04 14:50:32 -0800
commitb6c3e53c9982ccab438a2a64bf1b0b4e9b42fdc1 (patch)
treebf55beaa3db1dbdf919e9de63b4492e00bd9ae98 /core/java/android/app/ContextImpl.java
parentbe0f217ff7fd402cc6c1e55438a1e1e53f640194 (diff)
downloadframeworks_base-b6c3e53c9982ccab438a2a64bf1b0b4e9b42fdc1.zip
frameworks_base-b6c3e53c9982ccab438a2a64bf1b0b4e9b42fdc1.tar.gz
frameworks_base-b6c3e53c9982ccab438a2a64bf1b0b4e9b42fdc1.tar.bz2
Corrected whitespace trespasses.
Many small whitespace mistakes slipped into the framework as the themes feature was developed. This patch reverts them to make a cleaner patch set against android-2.3.1_r1. Change-Id: I52223c1d572d4f013e37bebc5c11bb7b1c595eb3
Diffstat (limited to 'core/java/android/app/ContextImpl.java')
-rw-r--r--core/java/android/app/ContextImpl.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/java/android/app/ContextImpl.java b/core/java/android/app/ContextImpl.java
index 27709c2..af7f4bd 100644
--- a/core/java/android/app/ContextImpl.java
+++ b/core/java/android/app/ContextImpl.java
@@ -292,14 +292,13 @@ class ContextImpl extends Context {
public void setTheme(int resid) {
mThemeResource = resid;
}
-
+
@Override
public Resources.Theme getTheme() {
if (mTheme == null) {
if (mThemeResource == 0) {
mThemeResource = com.android.internal.R.style.Theme;
}
-
mTheme = mResources.newTheme();
mTheme.applyStyle(mThemeResource, true);
}