diff options
author | Jeff Brown <jeffbrown@google.com> | 2011-07-18 19:47:10 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-07-18 19:47:10 -0700 |
commit | 13589b2f1774b45a4b241c21039db883f852a542 (patch) | |
tree | ba279cbfe0135e3724196d8ffe761a26a5fd94c2 | |
parent | 07229314aff0056dab21dc211468b7f6154f1350 (diff) | |
parent | 487c38b842c5244fecd66e1bca5d4b725d572961 (diff) | |
download | frameworks_base-13589b2f1774b45a4b241c21039db883f852a542.zip frameworks_base-13589b2f1774b45a4b241c21039db883f852a542.tar.gz frameworks_base-13589b2f1774b45a4b241c21039db883f852a542.tar.bz2 |
Merge "Remove an unnecessary finalizer."
-rw-r--r-- | core/java/android/app/Service.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/java/android/app/Service.java b/core/java/android/app/Service.java index c179b35..4c21d04 100644 --- a/core/java/android/app/Service.java +++ b/core/java/android/app/Service.java @@ -662,12 +662,6 @@ public abstract class Service extends ContextWrapper implements ComponentCallbac protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) { writer.println("nothing to dump"); } - - @Override - protected void finalize() throws Throwable { - super.finalize(); - //Log.i("Service", "Finalizing Service: " + this); - } // ------------------ Internal API ------------------ |