Creates an empty string.
()
| 150 | * Creates an empty string. |
| 151 | */ |
| 152 | public String() { |
| 153 | value = new char[0]; |
| 154 | offset = 0; |
| 155 | count = 0; |
| 156 | } |
| 157 | |
| 158 | /* |
| 159 | * Private constructor used for JIT optimization. |
nothing calls this directly
no test coverage detected