Skip to content
Snippets Groups Projects
Commit 1f11f85d authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Final keyword.

parent c74acdd6
No related branches found
No related tags found
No related merge requests found
...@@ -42,15 +42,14 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm { ...@@ -42,15 +42,14 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm {
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
public void setUpTilesManagement(TileUpdater updater, int maxCachedTiles) { public void setUpTilesManagement(final TileUpdater updater, final int maxCachedTiles) {
cache = new TilesCache<MinMaxTreeTile>(new MinMaxTreeTileFactory(), cache = new TilesCache<MinMaxTreeTile>(new MinMaxTreeTileFactory(),
updater, maxCachedTiles); updater, maxCachedTiles);
} }
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
public GroundPoint intersection(double latitude0, double longitude0, public GroundPoint intersection(final double latitude0, final double longitude0, final Vector3D direction) {
Vector3D direction) {
// TODO: compute intersection // TODO: compute intersection
return null; return null;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment