mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
add overrides
This commit is contained in:
parent
7234e12ec7
commit
335b58d95a
2 changed files with 10 additions and 0 deletions
|
|
@ -42,6 +42,11 @@ class JobNeighborhoodsImpl implements JobNeighborhoods {
|
|||
public Job next() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void remove() {
|
||||
|
||||
}
|
||||
};
|
||||
Iterator<ReferencedJob> descendingIterator = tree.iterator();
|
||||
return new NearestNeighborhoodIterator(descendingIterator, nNeighbors);
|
||||
|
|
|
|||
|
|
@ -47,6 +47,11 @@ class JobNeighborhoodsImplWithCapRestriction implements JobNeighborhoods {
|
|||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void remove() {
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
Iterator<ReferencedJob> descendingIterator = tree.iterator();
|
||||
return new NearestNeighborhoodIterator(descendingIterator, nNeighbors);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue