Apply "Primitive parsing" JDT cleanup to platform.ua

A boxed primitive is created from a String, just to extract the unboxed
primitive value.It is more efficient to just call the static parseXXX
method.


Before:
int number = Integer.valueOf("42", 8);
new Double("42.42").doubleValue();

After:

int number = Integer.parseInt("42", 8);
Double.parseDouble("42.42");

Change-Id: I86f3ec28abf9d9258516161bc5933b0c1d247079
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
4 files changed