()
| 177 | } |
| 178 | |
| 179 | public String toString() { |
| 180 | StringBuilder sb = new StringBuilder(); |
| 181 | for (Block block : blocks) { |
| 182 | sb.append(block.toString(lhs, rhs)).append("\n"); |
| 183 | } |
| 184 | return (sb.toString()); |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | @SuppressWarnings("unchecked") public static DiffResult diff(String[] lhsString, String[] rhsString) { |
no outgoing calls
no test coverage detected