Removes a set of paths @param paths set of paths
(final HashSet<Path> paths)
| 248 | * @param paths set of paths |
| 249 | */ |
| 250 | public void removePaths(final HashSet<Path> paths){ |
| 251 | this.paths.removeAll(paths); |
| 252 | for(Path path: paths){ |
| 253 | path.getOtherPlace(this).paths.remove(path); |
| 254 | } |
| 255 | callWorldChangeListeners(); |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Connects a place to another one tht is specified in path |
no test coverage detected