(Object array)
| 84 | } |
| 85 | |
| 86 | protected String joinArray(Object array) { |
| 87 | int length = Array.getLength(array); |
| 88 | StringBuffer buffer = new StringBuffer(); |
| 89 | for (int i = 0; i < length; i++) { |
| 90 | buffer.append("" + Array.get(array, i)); |
| 91 | } |
| 92 | return buffer.toString(); |
| 93 | } |
| 94 | } |
no test coverage detected