summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/LauncherModel.java
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2009-08-28 09:38:18 -0700
committerJoe Onorato <joeo@android.com>2009-08-28 09:38:18 -0700
commitefabe00e4a51bb792366c459d6acc46832e61fdc (patch)
tree95d991d26a3f9207343c46a23bf51d1fd6f40b44 /src/com/android/launcher2/LauncherModel.java
parentb58cbdc62d8244c33165f7c8600ddbb04cba5586 (diff)
downloadandroid_packages_apps_Trebuchet-efabe00e4a51bb792366c459d6acc46832e61fdc.tar.gz
android_packages_apps_Trebuchet-efabe00e4a51bb792366c459d6acc46832e61fdc.tar.bz2
android_packages_apps_Trebuchet-efabe00e4a51bb792366c459d6acc46832e61fdc.zip
The icons are 3d
Diffstat (limited to 'src/com/android/launcher2/LauncherModel.java')
-rw-r--r--src/com/android/launcher2/LauncherModel.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/com/android/launcher2/LauncherModel.java b/src/com/android/launcher2/LauncherModel.java
index 36b2090e1..90722cf0a 100644
--- a/src/com/android/launcher2/LauncherModel.java
+++ b/src/com/android/launcher2/LauncherModel.java
@@ -296,18 +296,18 @@ public class LauncherModel {
if (mAllAppsList.added.size() > 0) {
added = mAllAppsList.added;
- added = new ArrayList();
+ mAllAppsList.added = new ArrayList();
}
if (mAllAppsList.removed.size() > 0) {
removed = mAllAppsList.removed;
- removed = new ArrayList();
+ mAllAppsList.removed = new ArrayList();
for (ApplicationInfo info: removed) {
AppInfoCache.remove(info.intent.getComponent());
}
}
if (mAllAppsList.modified.size() > 0) {
modified = mAllAppsList.modified;
- modified = new ArrayList();
+ mAllAppsList.modified = new ArrayList();
}
final Callbacks callbacks = mCallbacks.get();
@@ -438,6 +438,7 @@ public class LauncherModel {
while (!done) {
try {
mWaitThread.join();
+ done = true;
} catch (InterruptedException ex) {
}
}