Skip to content

Commit

Permalink
Merge pull request #16149 from osmandapp/Fix_interface_MapTiledCollec…
Browse files Browse the repository at this point in the history
…tionProvider

Fix collection point overriden class name
  • Loading branch information
alex-osm authored Jan 5, 2023
2 parents bc480ad + 4116d82 commit 4847d9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public QListMapTiledCollectionPoint getTilePoints(TileId tileId, ZoomLevel zoom)
}
QListMapTiledCollectionPoint res = new QListMapTiledCollectionPoint();
for (T point : tilePoints) {
interface_MapTiledCollectionPoint collectionPoint = new CollectionPoint(ctx, point, textScale, density);
CollectionPoint collectionPoint = new CollectionPoint(ctx, point, textScale, density);
res.add(collectionPoint.instantiateProxy(true));
collectionPoint.swigReleaseOwnership();
}
Expand Down

0 comments on commit 4847d9b

Please sign in to comment.