adds a line `n` to the end of this line.
(FLine n)
| 151 | mod++; |
| 152 | return this; |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * adds a line `n` to the end of this line. |
| 157 | */ |
| 158 | public FLine append(FLine n) { |
| 159 | |
| 160 | for (Node nn : n.nodes) { |
| 161 | this.copyTo(nn); |
| 162 | } |
| 163 |
no test coverage detected