You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by GitBox <gi...@apache.org> on 2020/02/22 13:48:04 UTC

[GitHub] [commons-lang] garydgregory commented on issue #455: LANG-1484: Allow decimal point at the end of the String

garydgregory commented on issue #455: LANG-1484: Allow decimal point at the end of the String
URL: https://github.com/apache/commons-lang/pull/455#issuecomment-589957886
 
 
   Not a fan unless `testIsParsable` is updated to actually prove that something is parsable or not; for example, update:
   ```
           assertTrue( NumberUtils.isParsable("64") );
   ```
   to
   ```
           assertTrue( NumberUtils.isParsable("64") );
           Integer.parseInt("64");
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services