(String str, int i)
| 2659 | * index more than the length of this string. |
| 2660 | */ |
| 2661 | private static int charAt(String str, int i) { |
| 2662 | if (i >= str.length()) { |
| 2663 | return -1; |
| 2664 | } |
| 2665 | return str.charAt(i); |
| 2666 | } |
| 2667 | |
| 2668 | /** |
| 2669 | * Copies object from one array to another array with reverse of objects |
no test coverage detected