summaryrefslogtreecommitdiffstats
path: root/unified_src
diff options
context:
space:
mode:
authorScott Kennedy <skennedy@google.com>2013-07-31 22:32:54 -0700
committerScott Kennedy <skennedy@google.com>2013-07-31 22:33:05 -0700
commitde66c8305363f41b6199900751891fd26e87f7a2 (patch)
treea887751a7f63fdea479a2064bde3fae1288bfded /unified_src
parentfe81f4000d3b23274d0b57a3b02791634b76cc23 (diff)
downloadandroid_packages_apps_UnifiedEmail-de66c8305363f41b6199900751891fd26e87f7a2.tar.gz
android_packages_apps_UnifiedEmail-de66c8305363f41b6199900751891fd26e87f7a2.tar.bz2
android_packages_apps_UnifiedEmail-de66c8305363f41b6199900751891fd26e87f7a2.zip
Refactor PreferenceMigrator
Do the same thing as with LogTag, so that we don't have the same class name in the same package name in three projects. This makes IDE builds much easier. Change-Id: I5abf83456d7c1ae76381c9596938429ce93354af
Diffstat (limited to 'unified_src')
-rw-r--r--unified_src/com/android/mail/preferences/PreferenceMigrator.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/unified_src/com/android/mail/preferences/PreferenceMigrator.java b/unified_src/com/android/mail/preferences/PreferenceMigrator.java
deleted file mode 100644
index ea7dd9761..000000000
--- a/unified_src/com/android/mail/preferences/PreferenceMigrator.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc.
- * Licensed to The Android Open Source Project.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.android.mail.preferences;
-
-import android.content.Context;
-
-/**
- * Basic {@link BasePreferenceMigrator} implementation. Projects that extend UnifiedEmail need a
- * class with the same name and package that actually performs migration (if necessary).
- */
-public class PreferenceMigrator extends BasePreferenceMigrator {
- @Override
- protected void migrate(final Context context, final int oldVersion, final int newVersion) {
- // Nothing required here.
- }
-}