(DataInputStream d)
| 1660 | /// |
| 1661 | /// - `java.io.IOException` |
| 1662 | public static String readUTF(DataInputStream d) throws IOException { |
| 1663 | if (d.readBoolean()) { |
| 1664 | return d.readUTF(); |
| 1665 | } |
| 1666 | return null; |
| 1667 | } |
| 1668 | |
| 1669 | /// The read fully method from data input stream is very useful for all types of |
| 1670 | /// streams... |
no test coverage detected