summaryrefslogtreecommitdiff
path: root/src/de
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-13 23:31:03 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-13 23:31:03 +0200
commit85a1dd7006b4f1be0d556567edfdbf4f804c7fcd (patch)
tree914858cfde3ea036be96437c040ae0a807ff831c /src/de
parentbf70d0b3bf1b44a2416b9963e75850be301c0e00 (diff)
downloadAntennaPod-85a1dd7006b4f1be0d556567edfdbf4f804c7fcd.zip
changed access modifiers
Diffstat (limited to 'src/de')
-rw-r--r--src/de/podfetcher/syndication/util/SyndDateUtils.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/de/podfetcher/syndication/util/SyndDateUtils.java b/src/de/podfetcher/syndication/util/SyndDateUtils.java
index d081e684e..457a1fb81 100644
--- a/src/de/podfetcher/syndication/util/SyndDateUtils.java
+++ b/src/de/podfetcher/syndication/util/SyndDateUtils.java
@@ -9,15 +9,15 @@ import android.util.Log;
/** Parses several date formats. */
public class SyndDateUtils {
private static final String TAG = "DateUtils";
- private static final String RFC822 = "dd MMM yyyy HH:mm:ss Z";
+ public static final String RFC822 = "dd MMM yyyy HH:mm:ss Z";
/** RFC 822 date format with day of the week. */
- private static final String RFC822DAY = "EEE, " + RFC822;
+ public static final String RFC822DAY = "EEE, " + RFC822;
/** RFC 3339 date format for UTC dates. */
- private static final String RFC3339UTC = "yyyy-MM-dd'T'HH:mm:ss'Z'";
+ public static final String RFC3339UTC = "yyyy-MM-dd'T'HH:mm:ss'Z'";
/** RFC 3339 date format for localtime dates with offset. */
- private static final String RFC3339LOCAL = "yyyy-MM-dd'T'HH:mm:ssZ";
+ public static final String RFC3339LOCAL = "yyyy-MM-dd'T'HH:mm:ssZ";
public static Date parseRFC822Date(final String date) {