Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency org.mapsforge:mapsforge-map-awt to v0.23.0 #4102

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import it.unibo.alchemist.model.GeoPosition;
import org.mapsforge.core.model.LatLong;
import org.mapsforge.core.util.MercatorProjection;
import org.mapsforge.map.model.IMapViewPosition;
import org.mapsforge.map.model.MapViewPosition;

import java.awt.Component;
import java.awt.Point;
Expand All @@ -28,7 +28,7 @@
*
*/
public final class MapWormhole extends WormholeSwing<GeoPosition> {
private final IMapViewPosition mapModel;
private final MapViewPosition mapModel;
/**
* Maximum zoom.
*/
Expand All @@ -44,10 +44,10 @@ public final class MapWormhole extends WormholeSwing<GeoPosition> {
* @param comp
* the controlled {@link Component}
* @param m
* the {@link IMapViewPosition}
* the {@link MapViewPosition}
*/
@SuppressFBWarnings(value = "EI_EXPOSE_REP2", justification = "This is intentional")
public MapWormhole(final Environment<?, GeoPosition> environment, final Component comp, final IMapViewPosition m) {
public MapWormhole(final Environment<?, GeoPosition> environment, final Component comp, final MapViewPosition m) {
super(environment, comp);
mapModel = m;
super.setMode(Mode.MAP);
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ktor-server-test-host = { module = "io.ktor:ktor-server-test-host", version.ref
ktor-server-websockets = { module = "io.ktor:ktor-server-websockets-jvm", version.ref = "ktor" }
listset = "org.danilopianini:listset:0.3.9"
logback = "ch.qos.logback:logback-classic:1.5.16"
mapsforge = "org.mapsforge:mapsforge-map-awt:0.21.0"
mapsforge = "org.mapsforge:mapsforge-map-awt:0.23.0"
miglayout-swing = "com.miglayout:miglayout-swing:11.4.2"
mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" }
mongodb = "org.mongodb:mongodb-driver-sync:5.3.0"
Expand Down
Loading