From ceb8f9482e52d102c9ae49a087c28266b6779c86 Mon Sep 17 00:00:00 2001 From: Sibo Van Gool Date: Wed, 26 Jan 2022 03:05:08 +0100 Subject: [PATCH] [fixes #825] Remove unneeded vars in Communicator These are remains from the previous update checker implementation --- core/src/net/sf/openrocket/communication/Communicator.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/net/sf/openrocket/communication/Communicator.java b/core/src/net/sf/openrocket/communication/Communicator.java index 2e3d7656f..f762f0239 100644 --- a/core/src/net/sf/openrocket/communication/Communicator.java +++ b/core/src/net/sf/openrocket/communication/Communicator.java @@ -37,10 +37,6 @@ public abstract class Communicator { protected static final int BUG_REPORT_RESPONSE_CODE = HttpURLConnection.HTTP_ACCEPTED; protected static final int CONNECTION_TIMEOUT = 10000; // in milliseconds - protected static final int UPDATE_INFO_UPDATE_AVAILABLE = HttpURLConnection.HTTP_OK; - protected static final int UPDATE_INFO_NO_UPDATE_CODE = HttpURLConnection.HTTP_NO_CONTENT; - protected static final String UPDATE_INFO_CONTENT_TYPE = "text/plain"; - // Limit the number of bytes that can be read from the server protected static final int MAX_INPUT_BYTES = 20000;