deal with some cast warnings, looking into class loading issues with modes

This commit is contained in:
benfry
2012-09-10 02:07:13 +00:00
parent 56a4d08912
commit 9c1aadc5b8
12 changed files with 226 additions and 215 deletions

View File

@@ -308,7 +308,7 @@ public class Runner implements MessageConsumer {
// String outgoing[] = new String[params.size()];
// params.toArray(outgoing);
// return outgoing;
return (String[]) params.toArray(new String[0]);
return params.toArray(new String[0]);
}