JAL-3224 New version of getdown which will cope with unpacking .tgz resources, specif...
[jalview.git] / getdown / src / getdown / core / src / main / java / com / threerings / getdown / data / Build.java
diff --git a/getdown/src/getdown/core/src/main/java/com/threerings/getdown/data/Build.java b/getdown/src/getdown/core/src/main/java/com/threerings/getdown/data/Build.java
deleted file mode 100644 (file)
index 19a9fc5..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// Getdown - application installer, patcher and launcher
-// Copyright (C) 2004-2016 Getdown authors
-// https://github.com/threerings/getdown/blob/master/LICENSE
-
-package com.threerings.getdown.data;
-
-import java.util.Arrays;
-import java.util.List;
-
-import com.threerings.getdown.util.StringUtil;
-
-/**
- * Contains static data provided during the build process.
- */
-public class Build {
-
-    /** The date and time at which the code was built: in {@code yyyy-MM-dd HH:mm} format. */
-    public static String time () {
-        return "2019-04-05 14:07";
-    }
-
-    /** The Maven version of the Getdown project. */
-    public static String version () {
-        return "1.8.3-SNAPSHOT";
-    }
-
-    /**
-     * <p>The hosts which Getdown is allowed to communicate with. An empty list indicates that
-     * no whitelist is configured and there are no limitations. By default, no host whitelist
-     * is added to the binary, so it can be used to download and run applications from any
-     * server.
-     *
-     * <p>To create a custom Getdown build that can only talk to whitelisted servers, set
-     * the {@code getdown.host.whitelist} property on the command line while building the JAR
-     * (e.g. {@code mvn package -Dgetdown.host.whitelist=my.server.com}). Wildcards can be used
-     * (e.g. {@code *.mycompany.com}) and multiple values can be separated by commas
-     * (e.g. {@code app1.foo.com,app2.bar.com,app3.baz.com}).
-     */
-    public static List<String> hostWhitelist () {
-        return Arrays.asList(StringUtil.parseStringArray(""));
-    }
-}