Eclipse is showing a few "unnecessary cast" warnings for the projects
now using Java 1.5.

For example:

return (String) this.params.get(name.toLowerCase());

at RFC2617Scheme.java:162 does not need the (String) cast because
params is a Map<String, String>.

Also, clone() invocations such as:

this.datepatterns = (String [])datepatterns.clone();

at BrowserCompatSpec.java:84

Any objections to removing such casts?

S///

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to