summaryrefslogtreecommitdiff
path: root/core/java
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2014-02-14 09:14:15 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-02-14 09:14:15 +0000
commitae254a8d716b0515c5c91359a690987dfe8d5e9d (patch)
tree734ef77ab769c7693b2371cd12fff7abfef1c2ce /core/java
parent8a4c2bb1f07cf1d971290a7310d7b71aceb71590 (diff)
parent3048191b4cf9eff7a72b84065dec2b3dd1e89b3c (diff)
am 3048191b: Remove onCreate() method that should not be there.
* commit '3048191b4cf9eff7a72b84065dec2b3dd1e89b3c': Remove onCreate() method that should not be there.
Diffstat (limited to 'core/java')
-rw-r--r--core/java/com/android/server/SystemService.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/java/com/android/server/SystemService.java b/core/java/com/android/server/SystemService.java
index 0c89f9482615..194a084148d1 100644
--- a/core/java/com/android/server/SystemService.java
+++ b/core/java/com/android/server/SystemService.java
@@ -85,14 +85,6 @@ public abstract class SystemService {
}
/**
- * Services are not yet available. This is a good place to do setup work that does
- * not require other services.
- *
- * @param context The system context.
- */
- public void onCreate(Context context) {}
-
- /**
* Called when the dependencies listed in the @Service class-annotation are available
* and after the chosen start phase.
* When this method returns, the service should be published.