From 59f71bbb6f545d2cb44113ff2a00e5b4be9f83c1 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Tue, 22 Sep 2020 12:45:32 -0400 Subject: [PATCH] move comment --- .../bubble/cloud/geoLocation/GeoLocateServiceDriverBase.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocateServiceDriverBase.java b/bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocateServiceDriverBase.java index 0395f757..6e673dbd 100644 --- a/bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocateServiceDriverBase.java +++ b/bubble-server/src/main/java/bubble/cloud/geoLocation/GeoLocateServiceDriverBase.java @@ -102,8 +102,6 @@ public abstract class GeoLocateServiceDriverBase extends CloudServiceDriverBa if (meta.shouldRefresh(archive)) { downloadDbFile(request, archive); } - - // create a symlink with the proper extension, so "unroll" can detect the archive type } if (extension.startsWith(".")) extension = extension.substring(1); @@ -112,6 +110,7 @@ public abstract class GeoLocateServiceDriverBase extends CloudServiceDriverBa default: return die("initFile: unrecognized archive extension: "+extension+", from URL="+url); } + // create a symlink with the proper extension, so "unroll" can detect the archive type final File link; if (!isFile) { link = new File(abs(archive) + "." + extension);