(String[] contents)
| 253 | } |
| 254 | |
| 255 | static public Map<String, Object> createMap(String[] contents) |
| 256 | { |
| 257 | Map<String, Object> m = new HashMap<String, Object>(); |
| 258 | for(int i = 0; i < contents.length; ) { |
| 259 | m.put(contents[i], contents[i+1]); |
| 260 | i += 2; |
| 261 | } |
| 262 | return m; |
| 263 | } |
| 264 | |
| 265 | static public<T> DataByteArray[] toDataByteArrays(T[] input) { |
| 266 | DataByteArray[] dbas = new DataByteArray[input.length]; |
no test coverage detected