[rfc][icedtea-web] fix Boolean Cast For Java 7
Lukasz Dracz
ldracz at redhat.com
Fri Apr 17 20:43:18 UTC 2015
Hello,
I believe the latest patch 'Fixed javadoc warnings' (Changeset 1210:5837261a12aa) broke for java 7 due to the removal of a cast. The patch I have attached adds this cast back in.
The cast is not necessary for Java 8 but needed for Java 7 since it returns an Object.
Java 7:
public Object get(String name) throws IOException {
return Boolean.valueOf(isSet(getPosition(name)));
}
Java 8:
public Boolean get(String name) throws IOException {
return Boolean.valueOf(isSet(getPosition(name)));
}
Thank you,
Lukasz Dracz
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fixBooleanCastForJava7.patch
Type: text/x-patch
Size: 600 bytes
Desc: not available
URL: <http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20150417/8a6710e2/fixBooleanCastForJava7.patch>
More information about the distro-pkg-dev
mailing list