[android-developers] Java Guru needed -- compiler bug?
private void method(Collection<String> s)
{
// Nothing
}
private void caller()
{
// Complies fine
Collection<String> s = Collections.emptyList();
method(s);
// Doesn't compile -- gives error message
// The method method(Collection<String>) in the type Import is
not applicable for the arguments
// (List<Object>)
method(Collections.emptyList());
}
What's going on here? The two statements look identical to me...
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home