LANG-1153 Implement ParsePosition api for FastDateParser
Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/40134ecd Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/40134ecd Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/40134ecd Branch: refs/heads/master Commit: 40134ecdb327d1b82936f7ee3fa925b7b181c726 Parents: 3ff366c 94faa31 Author: Chas Honton <[email protected]> Authored: Tue Jul 7 20:20:19 2015 -0700 Committer: Chas Honton <[email protected]> Committed: Tue Jul 7 20:20:19 2015 -0700 ---------------------------------------------------------------------- src/changes/changes.xml | 1 + .../apache/commons/lang3/time/DateUtils.java | 15 +- .../commons/lang3/time/FastDateParser.java | 588 ++++++++++--------- .../commons/lang3/time/FastDateFormatTest.java | 4 +- .../lang3/time/FastDateParserSDFTest.java | 20 +- .../commons/lang3/time/FastDateParserTest.java | 28 +- .../time/FastDateParser_MoreOrLessTest.java | 113 ++++ 7 files changed, 459 insertions(+), 310 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/40134ecd/src/changes/changes.xml ---------------------------------------------------------------------- diff --cc src/changes/changes.xml index 9d961cc,c848755..9e14f45 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@@ -22,9 -22,6 +22,10 @@@ <body> <release version="3.5" date="tba" description="tba"> ++ <action issue="LANG-1153" type="add" dev="chas">Implement ParsePosition api for FastDateParser</action> + <action issue="LANG-1141" type="fix" dev="oheger">StrLookup.systemPropertiesLookup() no longer reacts on changes on system properties</action> + <action issue="LANG-1147" type="fix" dev="sebb" due-to="Loic Guibert">EnumUtils *BitVector issue with more than 32 values Enum</action> + <action issue="LANG-1059" type="fix" dev="sebb" due-to="Colin Casey">Capitalize javadoc is incorrect</action> <action issue="LANG-1137" type="add" dev="britter" due-to="Matthew Aguirre">Add check for duplicate event listener in EventListenerSupport</action> <action issue="LANG-1133" type="bug" dev="chas" due-to="Pascal Schumacher">FastDateParser_TimeZoneStrategyTest#testTimeZoneStrategyPattern fails on Windows with German Locale</action> <action issue="LANG-1135" type="add" dev="britter" due-to="Eduardo Martins">Add method containsAllWords to WordUtils</action>
