Review Request: JDK-8139572 SimpleDateFormat parse month stand-alone format bug

2015-12-14 Thread Naveen Kumar
locate ru_RU throw java.text.ParseExceptio when parse the valid date string "Сентябрь 2015". Fix: Implemented parsing for "stand-alone" month format pattern in jdk/src/java.base/share/classes/java/text/SimpleDateFormat.java regards Naveen Kumar

Review Request: remove @ignore 6876961 from test/java/util/ResourceBundle/Test4300693.java

2015-11-24 Thread Naveen Kumar
Hi All, Please review the following fix in (jtreg) test for jdk9 Bug:https://bugs.openjdk.java.net/browse/JDK-7047633 webrev: http://cr.openjdk.java.net/~okutsu/naveen/7047633/webrev.00/ issue description: Since 6876961 is now fixed, @ignore 6876961 should be removed from the test

Review Request: JDK-7047633 remove @ignore 6876961 from test/java/util/ResourceBundle/Test4300693.java

2015-11-24 Thread Naveen Kumar
Hi All, Please review the following fix in (jtreg) test for jdk9 Bug: https://bugs.openjdk.java.net/browse/JDK-7047633 webrev: http://cr.openjdk.java.net/~okutsu/naveen/7047633/webrev.00/ issue description: Since 6876961 is now fixed, @ignore 6876961 should be removed from the test.

Re: Review Request: JDK-8073211 javadoc of Format parseObject methods should specify NullPointerExceptions

2015-11-20 Thread Naveen Kumar
was already a NullPointerException for pos. So I have merged both of them like this: * @throws NullPointerException if {@code source} or {@code pos} is null. Sorry for posting it multiple times. regards Naveen On 11/20/2015 3:43 PM, Naveen Kumar wrote: Hi, Please consider this updated

Re: Review Request: JDK-8073211 javadoc of Format parseObject methods should specify NullPointerExceptions

2015-11-20 Thread Naveen Kumar
was already a NullPointerException for pos. So I have merged both of them like this: * @throws NullPointerException if {@code source} or {@code pos} is null. regards Naveen On 11/20/2015 2:28 AM, Naoto Sato wrote: Looks good to me. Naoto On 11/19/15 11:31 AM, Naveen Kumar wrote: Hi All

Review Request: JDK-8073211 javadoc of Format parseObject methods should specify NullPointerExceptions

2015-11-19 Thread Naveen Kumar
dated with the following addition: * @throws NullPointerException if {@code source} is null. regards Naveen Kumar

Re: Review request: JDK-8081794 ParsePosition getErrorIndex returns 0 for TimeZone parsing problem

2015-09-30 Thread Naveen Kumar
Thanks Masayoshi :-). Naveen On 9/30/2015 10:11 AM, Masayoshi Okutsu wrote: Looks good to me. I will push the fix for you. Thanks, Masayoshi On 9/29/2015 7:12 PM, Naveen Kumar wrote: Hi, Please consider this updated webrev.01 for the review of bug JDK-8081794. Bug: https

Re: Review request: JDK-8081794 ParsePosition getErrorIndex returns 0 for TimeZone parsing problem

2015-09-29 Thread Naveen Kumar
rorIndex update. Updates in Test: Corrected Copyright information. Corrected Formatting issues regards Naveen Kumar On 9/25/2015 4:38 PM, Naveen Kumar wrote: Hi, Please review the following fix for jdk9. Bug:https://bu

Review request: JDK-8081794 ParsePosition getErrorIndex returns 0 for TimeZone parsing problem

2015-09-25 Thread Naveen Kumar
ParsePosition Fix: remove incorrect update of "pos.index = -i" from subParse function in SimpleDateFormat.java, which (pos.index) is later used to update error index as "origPos.errorIndex = pos.index;" regards Naveen Kumar