What does this mean? Can you do this:
java.lang.Object[] yes_list = (String[])handler.query(groupName, password, accountName, conditions);
Then:
String syes_list [];
if(yes_list != null){
syes_list [] = new String[yes_list.length];
...array copy here.
}else{
syes_list = null;
}If this works, then search and vote for this bug in Sun's bug database.
Making them Objects[] does not work.
