From 32ace7113079ef87f8cdd7f64aef95152c579af1 Mon Sep 17 00:00:00 2001 From: Risto Lahtela <24460436+Rsl1122@users.noreply.github.com> Date: Sun, 7 Jun 2020 12:10:35 +0300 Subject: [PATCH] Extension service no longer tries again Affects issues: - Fixed #1475 --- .../main/java/com/djrapitops/plan/extension/ExtensionSvc.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Plan/common/src/main/java/com/djrapitops/plan/extension/ExtensionSvc.java b/Plan/common/src/main/java/com/djrapitops/plan/extension/ExtensionSvc.java index 564e5f9c5..0505e3321 100644 --- a/Plan/common/src/main/java/com/djrapitops/plan/extension/ExtensionSvc.java +++ b/Plan/common/src/main/java/com/djrapitops/plan/extension/ExtensionSvc.java @@ -172,8 +172,6 @@ public class ExtensionSvc implements ExtensionService { } catch (DataExtensionMethodCallException methodCallFailed) { logFailure(playerName, methodCallFailed); methodCallFailed.getMethod().ifPresent(gatherer::disableMethodFromUse); - // Try again - updatePlayerValues(gatherer, playerUUID, playerName, event); } catch (Exception | NoClassDefFoundError | NoSuchFieldError | NoSuchMethodError unexpectedError) { ErrorContext.Builder context = ErrorContext.builder() .whatToDo("Report and/or disable " + gatherer.getPluginName() + " extension in the Plan config.") @@ -215,8 +213,6 @@ public class ExtensionSvc implements ExtensionService { } catch (DataExtensionMethodCallException methodCallFailed) { logFailure("server", methodCallFailed); methodCallFailed.getMethod().ifPresent(gatherer::disableMethodFromUse); - // Try again - updateServerValues(gatherer, event); } catch (Exception | NoClassDefFoundError | NoSuchFieldError | NoSuchMethodError unexpectedError) { ErrorContext.Builder context = ErrorContext.builder() .whatToDo("Report and/or disable " + gatherer.getPluginName() + " extension in the Plan config.")