(String str, int i)
| 2896 | * index more than the length of this string. |
| 2897 | */ |
| 2898 | private static int charAt(String str, int i) { |
| 2899 | if (i >= str.length()) { |
| 2900 | return -1; |
| 2901 | } |
| 2902 | return str.charAt(i); |
| 2903 | } |
| 2904 | |
| 2905 | /** |
| 2906 | * Copies object from one array to another array with reverse of objects |
no test coverage detected