Returns a String presentation of the connection.
()
| 117 | * Returns a String presentation of the connection. |
| 118 | */ |
| 119 | public String toString() { |
| 120 | return super.toString() + (isTransferring() ? |
| 121 | " until " + String.format("%.2f", this.transferDoneTime) : ""); |
| 122 | } |
| 123 | |
| 124 | } |
nothing calls this directly
no test coverage detected