summaryrefslogtreecommitdiffstats
path: root/src/com/android/providers/downloads/RealSystemFacade.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/providers/downloads/RealSystemFacade.java')
-rw-r--r--src/com/android/providers/downloads/RealSystemFacade.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/android/providers/downloads/RealSystemFacade.java b/src/com/android/providers/downloads/RealSystemFacade.java
index 1d9e64a9..adf0107a 100644
--- a/src/com/android/providers/downloads/RealSystemFacade.java
+++ b/src/com/android/providers/downloads/RealSystemFacade.java
@@ -87,4 +87,9 @@ class RealSystemFacade implements SystemFacade {
public void cancelAllNotifications() {
mNotificationManager.cancelAll();
}
+
+ @Override
+ public void startThread(Thread thread) {
+ thread.start();
+ }
}