From 6de2d7338e223355068ec875324bde49b8be8401 Mon Sep 17 00:00:00 2001 From: Nikita Iarychenko Date: Mon, 12 May 2025 13:20:18 +0400 Subject: [PATCH] OPENIDE disable SOE on EAP build (cherry picked from commit cdfd76be2cee92ec7979aee2911bf0c88044a95e) --- platform/core-api/src/com/intellij/util/SlowOperations.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/platform/core-api/src/com/intellij/util/SlowOperations.java b/platform/core-api/src/com/intellij/util/SlowOperations.java index 59e59413f39c..878f1c4d3451 100644 --- a/platform/core-api/src/com/intellij/util/SlowOperations.java +++ b/platform/core-api/src/com/intellij/util/SlowOperations.java @@ -1,4 +1,7 @@ // Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. +// +// Modified by Nikita Iarychenko at 2025 as part of the OpenIDE project(https://openide.ru). +// Any modifications are available on the same license terms as the original source code. package com.intellij.util; import com.intellij.diagnostic.LoadingState; @@ -211,7 +214,7 @@ public final class SlowOperations { boolean result = System.getenv("TEAMCITY_VERSION") != null || application.isUnitTestMode() || application.isCommandLine() || - !application.isEAP() && !application.isInternal() && !SystemProperties + !application.isInternal() && !SystemProperties .getBooleanProperty(IDEA_PLUGIN_SANDBOX_MODE, false); ourAlwaysAllow = result ? 1 : 0; return result;