summaryrefslogtreecommitdiffstats
path: root/core/java/android/pim
diff options
context:
space:
mode:
authorKen Shirriff <kens@google.com>2010-03-01 14:19:26 -0800
committerKen Shirriff <kens@google.com>2010-03-01 14:21:13 -0800
commita53bbe4033f1e9fc4c371d51ba1ef58588f867eb (patch)
tree92516a110f5bca4007ab2ef91dacec1fd9e70c03 /core/java/android/pim
parent9d06c5876d5f63f1e599cbf26066b9a93013ff09 (diff)
downloadframeworks_base-a53bbe4033f1e9fc4c371d51ba1ef58588f867eb.zip
frameworks_base-a53bbe4033f1e9fc4c371d51ba1ef58588f867eb.tar.gz
frameworks_base-a53bbe4033f1e9fc4c371d51ba1ef58588f867eb.tar.bz2
Remove DateException and obsolete DateUtils functions.
These functions are deprecated and no longer used.
Diffstat (limited to 'core/java/android/pim')
-rw-r--r--core/java/android/pim/DateException.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/core/java/android/pim/DateException.java b/core/java/android/pim/DateException.java
deleted file mode 100644
index 90bfe7f..0000000
--- a/core/java/android/pim/DateException.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (C) 2006 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 android.pim;
-
-public class DateException extends Exception
-{
- public DateException(String message)
- {
- super(message);
- }
-}
-