diff options
author | Michael Chan <mchan@android.com> | 2012-01-11 17:55:44 -0800 |
---|---|---|
committer | Michael Chan <mchan@android.com> | 2012-01-11 17:55:44 -0800 |
commit | 996f12565f11ea0130cbdc570c0853ae53073f18 (patch) | |
tree | 35c2964d3468279bd0ebb20ddb3c7d7fe58786a1 | |
parent | 0335d9f524da1da1f4d15bba37a1576a9480a36d (diff) | |
download | android_frameworks_opt_calendar-996f12565f11ea0130cbdc570c0853ae53073f18.tar.gz android_frameworks_opt_calendar-996f12565f11ea0130cbdc570c0853ae53073f18.tar.bz2 android_frameworks_opt_calendar-996f12565f11ea0130cbdc570c0853ae53073f18.zip |
Allow lowercase in rrule
Bug: 5822997
Change-Id: I5f309cd0f854f8ac27326e7c16f9b637b24cd604
-rw-r--r-- | src/com/android/calendarcommon/EventRecurrence.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/calendarcommon/EventRecurrence.java b/src/com/android/calendarcommon/EventRecurrence.java index ca91817..cf2b410 100644 --- a/src/com/android/calendarcommon/EventRecurrence.java +++ b/src/com/android/calendarcommon/EventRecurrence.java @@ -136,7 +136,7 @@ public class EventRecurrence { } /** If set, allow lower-case recurrence rule strings. Minor performance impact. */ - private static final boolean ALLOW_LOWER_CASE = false; + private static final boolean ALLOW_LOWER_CASE = true; /** If set, validate the value of UNTIL parts. Minor performance impact. */ private static final boolean VALIDATE_UNTIL = false; |