Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
don-vip committed Sep 30, 2019
1 parent 17c6b26 commit 8e47289
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
*
* @author Ashish Singh
*/

public class BicycleMendRelation extends MendRelationAction {

////////////////////////Assigning Variables///////////////
Expand Down Expand Up @@ -636,8 +635,6 @@ public void backTrack(Way way, int idx) {
}
}
}
List<Node> n = new ArrayList<>();
n.add(nod);
super.currentNode = nod;
if (fixVariants.size() > 0) {
displayBacktrackFixVariant(fixVariants, idx);
Expand All @@ -649,7 +646,6 @@ public void backTrack(Way way, int idx) {

@Override
public Way findWayAfterChunk(Way way) {
Way w2 = null;
Way w1 = null;
Way wayToKeep = null;
List<Node> breakNode = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,6 @@ private static HashMap<Way, Boolean> wayCanBeTraversedAgain(List<RelationMember>
node1 = findFirstCommonNode(curr, prev);
}
if (i < wayMembers.size() - 1) {
RelationMember pk = wayMembers.get(i + 1);
next = wayMembers.get(i + 1).getWay();
node2 = findFirstCommonNode(curr, next);
}
Expand Down

0 comments on commit 8e47289

Please sign in to comment.