()
| 475 | } |
| 476 | |
| 477 | @Override |
| 478 | public String toString() { |
| 479 | if (string != null) |
| 480 | return string; |
| 481 | else if (bytes != null) |
| 482 | return readString(); |
| 483 | else if (reader != null) |
| 484 | return "Source (Reader)"; |
| 485 | else if (inputStream != null) |
| 486 | return "Source (InputStream)"; |
| 487 | else if (file != null) |
| 488 | return "Source (" + file + ")"; |
| 489 | else |
| 490 | return "Source (other)"; |
| 491 | } |
| 492 | } |
nothing calls this directly
no test coverage detected