(Object[] array)
| 3757 | /// |
| 3758 | /// 1.5 |
| 3759 | public static String deepToString(Object[] array) { |
| 3760 | // delegate this to the recursive method |
| 3761 | return deepToStringImpl(array, new Object[] { array }, null); |
| 3762 | } |
| 3763 | |
| 3764 | /// Implementation method used by `#deepToString(Object[])`. |
| 3765 | /// |
nothing calls this directly
no test coverage detected