We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf29e4b commit 57d83f8Copy full SHA for 57d83f8
gpslogger/src/main/java/com/mendhak/gpslogger/common/AppSettings.java
@@ -244,27 +244,15 @@ static void setNewFileCreation(String newFileCreation) {
244
* @return the autoSendDelay
245
*/
246
public static Float getAutoSendDelay() {
247
- if (autoSendDelay >= 8f) {
248
- return 8f;
249
- } else {
250
return autoSendDelay;
251
- }
252
-
253
254
}
255
256
/**
257
* @param autoSendDelay the autoSendDelay to set
258
259
static void setAutoSendDelay(Float autoSendDelay) {
260
261
262
- AppSettings.autoSendDelay = 8f;
263
264
AppSettings.autoSendDelay = autoSendDelay;
265
266
267
268
269
270
0 commit comments