You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@baremaps.apache.org by bc...@apache.org on 2023/09/26 20:55:56 UTC

[incubator-baremaps] branch main updated: Fix database type issue

This is an automated email from the ASF dual-hosted git repository.

bchapuis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git


The following commit(s) were added to refs/heads/main by this push:
     new f974e135 Fix database type issue
f974e135 is described below

commit f974e1359a40d7581690e41f24eb33d8459ae287
Author: Bertil Chapuis <bc...@gmail.com>
AuthorDate: Tue Sep 26 22:55:02 2023 +0200

    Fix database type issue
---
 .../src/main/java/org/apache/baremaps/vectortile/tileset/Tileset.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/baremaps-core/src/main/java/org/apache/baremaps/vectortile/tileset/Tileset.java b/baremaps-core/src/main/java/org/apache/baremaps/vectortile/tileset/Tileset.java
index 14822c7d..684f04cb 100644
--- a/baremaps-core/src/main/java/org/apache/baremaps/vectortile/tileset/Tileset.java
+++ b/baremaps-core/src/main/java/org/apache/baremaps/vectortile/tileset/Tileset.java
@@ -244,7 +244,7 @@ public class Tileset {
     return database;
   }
 
-  public void setDatabase(String database) {
+  public void setDatabase(Object database) {
     this.database = database;
   }