()
| 41 | private int hashCode; |
| 42 | |
| 43 | public String() { |
| 44 | this(new char[0], 0, 0); |
| 45 | } |
| 46 | |
| 47 | public String(char[] data, int offset, int length, boolean copy) { |
| 48 | this((Object) data, offset, length, copy); |
nothing calls this directly
no test coverage detected