From 3048191b4cf9eff7a72b84065dec2b3dd1e89b3c Mon Sep 17 00:00:00 2001 From: Jeff Brown Date: Thu, 13 Feb 2014 23:02:05 -0800 Subject: [PATCH] Remove onCreate() method that should not be there. Change-Id: I8355dd78f910afa9895d2fa00cb627a0885d9eec --- core/java/com/android/server/SystemService.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/java/com/android/server/SystemService.java b/core/java/com/android/server/SystemService.java index 0c89f94826151..194a084148d16 100644 --- a/core/java/com/android/server/SystemService.java +++ b/core/java/com/android/server/SystemService.java @@ -84,14 +84,6 @@ public abstract class SystemService { return getManager().isSafeMode(); } - /** - * 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.