aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/util/Utils.java
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2021-07-01 20:32:20 +0200
committerGitHub <noreply@github.com>2021-07-01 20:32:20 +0200
commit5ff54a16d70c2d55a2a354750f001a19cb079558 (patch)
tree3207dda75b9dc34e9c76aa724ff972430d1c1dad /src/Java/gtPlusPlus/core/util/Utils.java
parentc98969b0c7032f47a0b5d153a32c0c1531ebc57a (diff)
parent2322098c95b4af41358dcb5ce50fd0208e816d33 (diff)
downloadGT5-Unofficial-5ff54a16d70c2d55a2a354750f001a19cb079558.tar.gz
GT5-Unofficial-5ff54a16d70c2d55a2a354750f001a19cb079558.tar.bz2
GT5-Unofficial-5ff54a16d70c2d55a2a354750f001a19cb079558.zip
Merge pull request #9 from GTNewHorizons/remove-update-checker
Stop checking for update as we are on our own now
Diffstat (limited to 'src/Java/gtPlusPlus/core/util/Utils.java')
-rw-r--r--src/Java/gtPlusPlus/core/util/Utils.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Java/gtPlusPlus/core/util/Utils.java b/src/Java/gtPlusPlus/core/util/Utils.java
index 982c55282e..81b23e0b1c 100644
--- a/src/Java/gtPlusPlus/core/util/Utils.java
+++ b/src/Java/gtPlusPlus/core/util/Utils.java
@@ -92,18 +92,6 @@ public class Utils {
}
}
- public static boolean isModUpToDate() {
- if (CORE.MASTER_VERSION.toLowerCase().equals("offline")) {
- return false;
- }
-
- else if (CORE.MASTER_VERSION.toLowerCase().equals(CORE.VERSION.toLowerCase())) {
- return true;
- } else {
- return false;
- }
- }
-
public static TC_AspectStack getTcAspectStack(final TC_Aspects aspect, final long size) {
return getTcAspectStack(aspect.name(), (int) size);
}