hello all
my part of code give me message to recompile with -Xlint:unchecked
How to fix this code so the message gone
thank you
denny
if(file.exists())
{
FileRead fr=new FileRead();
String astring=fr.Read(filePath);
System.out.println(astring);
/* delimiter */
String delimiter = ",";
/* given string will be split by the argument delimiter provided. */
String[] temp = astring.split(delimiter);
comboCity=new JComboBox(temp);
}
else
{
comboCity=new JComboBox();
}