Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
9answers
21k views

How do I fix "The expression of type List needs unchecked conversion…'?

In the Java snippet: SyndFeedInput fr = new SyndFeedInput(); SyndFeed sf = fr.build(new XmlReader(myInputStream)); List<SyndEntry> entries = sf.getEntries(); the last line generates the ...
2
votes
1answer
191 views

Avoiding unsafe cast for generic situation involving runtime passing of class

public class AutoKeyMap<K,V> { public interface KeyGenerator<K> { public K generate(); } private KeyGenerator<K> generator; public ...
2
votes
2answers
208 views

Unchecked_Conversion in Ada

Can anyone please make me clear about the use of unchecked conversion in the Ada language.I had tried the pdf and net but all doesnt give me a clear picture to me. Now i have a small piece of code ...
1
vote
2answers
172 views

Unchecked conversion when popping stack Java

I'm new to Java and have a question about a warning: My general code: private Stack<ArrayList> stackFrame = new Stack<ArrayList>(); private ArrayList<Object> curBlocKList = new ...
0
votes
1answer
152 views

Unchecked generics warning in Scala?

I've written a NaturalComparator class/object in Java and rewritten it into Scala: https://gist.github.com/319827#file_natural_comparator.scala However, I wonder why I don't need to ...