From f36ccb1e65d58ec8abaee1d879d791bd3f54a9e2 Mon Sep 17 00:00:00 2001 From: Michael Barry Date: Tue, 14 Feb 2023 05:29:02 -0500 Subject: [PATCH] Update ReadableTileArchive.java --- .../onthegomap/planetiler/archive/ReadableTileArchive.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/planetiler-core/src/main/java/com/onthegomap/planetiler/archive/ReadableTileArchive.java b/planetiler-core/src/main/java/com/onthegomap/planetiler/archive/ReadableTileArchive.java index 2bc9960c..6702de02 100644 --- a/planetiler-core/src/main/java/com/onthegomap/planetiler/archive/ReadableTileArchive.java +++ b/planetiler-core/src/main/java/com/onthegomap/planetiler/archive/ReadableTileArchive.java @@ -12,12 +12,12 @@ import java.io.Closeable; */ public interface ReadableTileArchive extends Closeable { - /** Returns the raw tile data associated with the tile at {@code coord}. */ + /** Returns the raw tile data at {@code coord} or {@code null} if not found. */ default byte[] getTile(TileCoord coord) { return getTile(coord.x(), coord.y(), coord.z()); } - /** Returns the raw tile data associated with the tile at coordinate {@code x, y, z}. */ + /** Returns the raw tile data at {@code x, y, z} or {@code null} if not found. */ byte[] getTile(int x, int y, int z); /**