From f679ddac72519744e87cf4f11aa736fa7ce8c45c Mon Sep 17 00:00:00 2001 From: Una Thompson Date: Fri, 8 Jul 2022 00:41:12 -0700 Subject: [PATCH] Disable update checker --- .../the/bytecode/club/bytecodeviewer/bootloader/UpdateCheck.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/UpdateCheck.java b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/UpdateCheck.java index babd9c81..e1fa2fd8 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/UpdateCheck.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/bootloader/UpdateCheck.java @@ -128,6 +128,7 @@ public class UpdateCheck implements Runnable @Override public void run() { + if (Integer.valueOf(4) == 4) return; try { HTTPRequest r = new HTTPRequest(new URL("https://raw.githubusercontent.com/Konloch/bytecode-viewer/master/VERSION")); final Version version = Version.parseVersion(r.readSingle());