Returns a boolean indicating whether this reader is closed. @return true if closed, otherwise false.
()
| 62 | * @return {@code true} if closed, otherwise {@code false}. |
| 63 | */ |
| 64 | private boolean isClosed() { |
| 65 | return str == null; |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Sets a mark position in this reader. The parameter {@code readLimit} is |