Quote:
Originally Posted by soundfx
This new method allows you to set a default value as a second parameter to return if no value can be found. The new method is getNumberArray(String key, Double[] defaultValue).
|
after using
Code:
double[] defaultval = new double[0];
getNumberArray("width", defaultval );
it says defaultval is a double but it needs to be a double[]
forgive me if im missing something very obvious switched over to java 4 days ago and arrays are not my strong suit