diff --git a/src/main/java/io/github/dsheirer/map/PlottableEntityHistory.java b/src/main/java/io/github/dsheirer/map/PlottableEntityHistory.java
index f99c9a9f3..301bfa824 100644
--- a/src/main/java/io/github/dsheirer/map/PlottableEntityHistory.java
+++ b/src/main/java/io/github/dsheirer/map/PlottableEntityHistory.java
@@ -1,7 +1,6 @@
/*
- * ******************************************************************************
- * sdrtrunk
- * Copyright (C) 2014-2018 Dennis Sheirer
+ * *****************************************************************************
+ * Copyright (C) 2014-2024 Dennis Sheirer
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,7 +14,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
- * *****************************************************************************
+ * ****************************************************************************
*/
package io.github.dsheirer.map;
@@ -23,11 +22,9 @@
import io.github.dsheirer.identifier.Identifier;
import io.github.dsheirer.identifier.IdentifierCollection;
import io.github.dsheirer.module.decode.event.PlottableDecodeEvent;
-import org.jdesktop.swingx.mapviewer.GeoPosition;
-
import java.util.ArrayList;
-import java.util.Collections;
import java.util.List;
+import org.jdesktop.swingx.mapviewer.GeoPosition;
/**
* Plottable entity history with location history.
@@ -52,7 +49,7 @@ public PlottableEntityHistory(Identifier identifier, PlottableDecodeEvent event)
*/
public List getLocationHistory()
{
- return Collections.unmodifiableList(mLocationHistory);
+ return new ArrayList<>(mLocationHistory);
}
/**