From 09f01f6653552043109485e4bf9fd281f6fda9a7 Mon Sep 17 00:00:00 2001 From: m1ga Date: Fri, 5 Apr 2024 12:37:01 +0200 Subject: [PATCH] lint --- android/src/ti/map/TiUIMapView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/ti/map/TiUIMapView.java b/android/src/ti/map/TiUIMapView.java index c5806f65..02e90745 100644 --- a/android/src/ti/map/TiUIMapView.java +++ b/android/src/ti/map/TiUIMapView.java @@ -1455,7 +1455,7 @@ public void loadKml(KrollDict args) TiBlob file = TiConvert.toBlob(args.get("file")); try { KmlLayer layer = - new KmlLayer(map, file.getInputStream(), TiApplication.getInstance().getApplicationContext()); + new KmlLayer(map, file.getInputStream(), TiApplication.getInstance().getApplicationContext()); layer.addLayerToMap(); } catch (Exception ex) { Log.e(TAG, "Error: " + ex.getMessage());