()
| 165 | } |
| 166 | |
| 167 | @Override |
| 168 | public String toString() { |
| 169 | StringBuilder sb = new StringBuilder(); |
| 170 | sb.append(getIdentification()).append(": "); |
| 171 | sb.append(getName()).append(" "); |
| 172 | sb.append("(").append(getType()).append(") "); |
| 173 | sb.append("Maj:Min=").append(getMajor()).append(":").append(getMinor()).append(", "); |
| 174 | sb.append("size: ").append(FormatUtil.formatBytesDecimal(getSize())); |
| 175 | sb.append(getMountPoint().isEmpty() ? "" : " @ " + getMountPoint()); |
| 176 | return sb.toString(); |
| 177 | } |
| 178 | } |
nothing calls this directly
no test coverage detected