[rfc][icedtea-web] itw itself warning cleanup
Jiri Vanek
jvanek at redhat.com
Thu Dec 12 06:58:39 PST 2013
On 12/12/2013 12:30 PM, Jiri Vanek wrote:
> After this clean up only "internal proprietary API and may be removed in a future release" warnings
> remain fro make check.
>
>
> IcedTea-Web itself is another in queue as warnings have really multiplied.
>
>
> I would like to backport as much of this clceanup to 1.4 as possible.
>
> J.
Here we go:
Fixed:
rawtype, uncheck, braces, and Override annotations
Again, I would like to backport as much as posible to 1.4.
subjects of "future patches" (but included here)
icedtea-web/netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java:248: warning: [rawtypes]
found raw type: JComboBox
icedtea-web/netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java:337: warning: [rawtypes]
found raw type: DefaultComboBoxModel
icedtea-web/netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java:827: warning: [rawtypes]
found raw type: JComboBox
Remaining issues:
1)
icedtea-web/netx/net/sourceforge/jnlp/cache/ResourceTracker.java:357: warning: [deprecation] toURL()
in File has been deprecated
return f.toURL();
^
icedtea-web/netx/net/sourceforge/jnlp/browser/BrowserAwareProxySelector.java:205: warning:
[fallthrough] possible fall-through into case
case BROWSER_PROXY_TYPE_SYSTEM:
^
icedtea-web/netx/net/sourceforge/jnlp/browser/BrowserAwareProxySelector.java:211: warning:
[fallthrough] possible fall-through into case
default:
^
which is:
@Override
protected List<Proxy> getFromBrowser(URI uri) {
List<Proxy> proxies = new ArrayList<Proxy>();
String optionDescription = null;
switch (browserProxyType) {
case BROWSER_PROXY_TYPE_PAC:
proxies.addAll(getFromBrowserPAC(uri));
break;
case BROWSER_PROXY_TYPE_MANUAL:
proxies.addAll(getFromBrowserConfiguration(uri));
break;
case BROWSER_PROXY_TYPE_NONE:
proxies.add(Proxy.NO_PROXY);
break;
case BROWSER_PROXY_TYPE_AUTO:
// firefox will do a whole lot of stuff to automagically
// figure out the right settings. gconf, WPAD, and ENV are used.
// https://bugzilla.mozilla.org/show_bug.cgi?id=66057#c32
// TODO this is probably not easy/quick to do. using libproxy might be
// the simpler workaround
if (optionDescription == null) {
optionDescription = "Automatic";
}
case BROWSER_PROXY_TYPE_SYSTEM:
// means use $http_proxy, $ftp_proxy etc.
// TODO implement env vars if possible
if (optionDescription == null) {
optionDescription = "System";
}
default:
if (optionDescription == null) {
optionDescription = "Unknown";
}
OutputController.getLogger().log(OutputController.Level.ERROR_DEBUG,R("RProxyFirefoxOptionNotImplemented",
browserProxyType, optionDescription));
proxies.add(Proxy.NO_PROXY);
}
OutputController.getLogger().log("Browser selected proxies: " + proxies.toString());
return proxies;
}
Well the whole code smells:
The first if (optionDescription == null) is always true (or not!?!?!?) so it is always
optionDescription = "Automatic"; Then it bubble into BROWSER_PROXY_TYPE_SYSTEM, where it can not set
as it is already not null. So imho both breaks are really missing. But the TODO in comments make me
feel uncomfortable.
2) icedtea-web/netx/net/sourceforge/jnlp/cache/ResourceTracker.java:357: warning: [deprecation]
toURL() in File has been deprecated
icedtea-web/netx/net/sourceforge/jnlp/cache/CacheUtil.java:128: warning: [deprecation] toURL()
in File has been deprecated
icedtea-web/netx/net/sourceforge/jnlp/runtime/Boot.java:261: warning: [deprecation] toURL() in
File has been deprecated
There have been a lot of work around cach x file x url escaping, and as main difference between
file.tourl and file.touri.tourl is escapin, I rather left it.
3)
icedtea-web/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java:804: warning:
[deprecation] Ref in sun.misc has been deprecated
icedtea-web/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java:121: warning: [deprecation]
Ref in sun.misc has been deprecated
What can be done?
Hope this helps,
J.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: icedteaWebWarningCleanUp.patch
Type: text/x-patch
Size: 107228 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20131212/36364c0f/icedteaWebWarningCleanUp-0001.patch
More information about the distro-pkg-dev
mailing list