Skip to content

Commit 99804c3

Browse files
committed
Move package marker to markers
1 parent 158b155 commit 99804c3

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

src/main/java/de/bluecolored/bluemap/api/BlueMapMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import com.flowpowered.math.vector.Vector3d;
2929
import com.flowpowered.math.vector.Vector3i;
3030
import de.bluecolored.bluemap.api.debug.DebugDump;
31-
import de.bluecolored.bluemap.api.marker.MarkerSet;
31+
import de.bluecolored.bluemap.api.markers.MarkerSet;
3232

3333
import java.util.Map;
3434
import java.util.function.Predicate;

src/main/java/de/bluecolored/bluemap/api/WebApp.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
package de.bluecolored.bluemap.api;
2626

2727
import de.bluecolored.bluemap.api.debug.DebugDump;
28-
import de.bluecolored.bluemap.api.marker.Marker;
29-
import de.bluecolored.bluemap.api.marker.POIMarker;
28+
import de.bluecolored.bluemap.api.markers.Marker;
29+
import de.bluecolored.bluemap.api.markers.POIMarker;
3030
import com.flowpowered.math.vector.Vector2i;
3131

3232
import java.awt.image.BufferedImage;

src/main/java/de/bluecolored/bluemap/api/marker/DistanceRangedMarker.java renamed to src/main/java/de/bluecolored/bluemap/api/markers/DistanceRangedMarker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package de.bluecolored.bluemap.api.marker;
25+
package de.bluecolored.bluemap.api.markers;
2626

2727
import com.flowpowered.math.vector.Vector3d;
2828
import de.bluecolored.bluemap.api.debug.DebugDump;

src/main/java/de/bluecolored/bluemap/api/marker/ExtrudeMarker.java renamed to src/main/java/de/bluecolored/bluemap/api/markers/ExtrudeMarker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package de.bluecolored.bluemap.api.marker;
25+
package de.bluecolored.bluemap.api.markers;
2626

2727
import com.flowpowered.math.vector.Vector2d;
2828
import com.flowpowered.math.vector.Vector3d;

src/main/java/de/bluecolored/bluemap/api/marker/HtmlMarker.java renamed to src/main/java/de/bluecolored/bluemap/api/markers/HtmlMarker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package de.bluecolored.bluemap.api.marker;
25+
package de.bluecolored.bluemap.api.markers;
2626

2727

2828
import com.flowpowered.math.vector.Vector2i;

src/main/java/de/bluecolored/bluemap/api/marker/LineMarker.java renamed to src/main/java/de/bluecolored/bluemap/api/markers/LineMarker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package de.bluecolored.bluemap.api.marker;
25+
package de.bluecolored.bluemap.api.markers;
2626

2727
import com.flowpowered.math.vector.Vector3d;
2828
import de.bluecolored.bluemap.api.debug.DebugDump;

src/main/java/de/bluecolored/bluemap/api/marker/Marker.java renamed to src/main/java/de/bluecolored/bluemap/api/markers/Marker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package de.bluecolored.bluemap.api.marker;
25+
package de.bluecolored.bluemap.api.markers;
2626

2727
import com.flowpowered.math.vector.Vector3d;
2828
import de.bluecolored.bluemap.api.debug.DebugDump;

src/main/java/de/bluecolored/bluemap/api/marker/MarkerGson.java renamed to src/main/java/de/bluecolored/bluemap/api/markers/MarkerGson.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package de.bluecolored.bluemap.api.marker;
25+
package de.bluecolored.bluemap.api.markers;
2626

2727
import com.flowpowered.math.vector.Vector2d;
2828
import com.flowpowered.math.vector.Vector2i;

src/main/java/de/bluecolored/bluemap/api/marker/MarkerSet.java renamed to src/main/java/de/bluecolored/bluemap/api/markers/MarkerSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package de.bluecolored.bluemap.api.marker;
25+
package de.bluecolored.bluemap.api.markers;
2626

2727
import de.bluecolored.bluemap.api.debug.DebugDump;
2828

src/main/java/de/bluecolored/bluemap/api/marker/ObjectMarker.java renamed to src/main/java/de/bluecolored/bluemap/api/markers/ObjectMarker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25-
package de.bluecolored.bluemap.api.marker;
25+
package de.bluecolored.bluemap.api.markers;
2626

2727
import com.flowpowered.math.vector.Vector3d;
2828
import de.bluecolored.bluemap.api.debug.DebugDump;

0 commit comments

Comments
 (0)