[
https://issues.apache.org/jira/browse/JCR-1424?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12572812#action_12572812
]
angela commented on JCR-1424:
-----------------------------
as far as i know the Boolean.parseBoolean(String) is available as of Java 1.5
but the main
jackrabbit project still requires 1.4 only.
for Double/Float/Integer/Long it was already present. so i'd suggest to split
the patch.
> [PATCH] simplify conversion of strings to primitives by using parseXXX, not
> valueOf(xxx).xxxValue()
> ---------------------------------------------------------------------------------------------------
>
> Key: JCR-1424
> URL: https://issues.apache.org/jira/browse/JCR-1424
> Project: Jackrabbit
> Issue Type: Improvement
> Components: jackrabbit-core
> Affects Versions: core 1.4.1
> Reporter: Dave Brosius
> Priority: Trivial
> Fix For: core 1.4.2
>
> Attachments: simplify_string_to_primitive.patch
>
>
> Code converts strings to primitives using a two step process, eg
> Boolean.valueOf(myString).booleanValue();
> can be simplified to
> Boolean.parseBoolean(myString);
> true of Float, Double, Int etc.
> In some cases, this avoids allocating temporary boxed objects
> patch fixes this.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.