---
core-dave/src/org/openstreetmap/josm/actions/CombineWayAction.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff -puN src/org/openstreetmap/josm/actions/CombineWayAction.java~fix-cwa-warning src/org/openstreetmap/josm/actions/CombineWayAction.java
|
a
|
b
|
public class CombineWayAction extends Jo
|
| 582 | 582 | |
| 583 | 583 | protected List<NodePair> getOutboundPairs(Node node) { |
| 584 | 584 | List<NodePair> l = successors.get(node); |
| 585 | | return l == null ? Collections.EMPTY_LIST : l; |
| | 585 | if (l == null) |
| | 586 | return Collections.emptyList(); |
| | 587 | return l; |
| 586 | 588 | } |
| 587 | 589 | |
| 588 | 590 | protected Set<Node> getNodes() { |