Java Collections

Joined
Mar 27, 2007
Messages
1
Reaction score
0
Hello,
Could somebody please tell me why I get an unsafe or unchecked ... warning from the compiler from this code snippet.

public static boolean includesAll(String theLetters, String aWord)
{
int i = 0;

// create a list from the characters in the string theLetters
List<Character> container = CharacterLists.asList(theLetters);
// create a list from the characters in the string aWord
List<Character> charList = CharacterLists.asList(aWord);

....
}
Using Blue Jay and SDK 5.0

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top