diff --git a/platform/ui.jcef/jcef/JBCefAppArmorUtils.java b/platform/ui.jcef/jcef/JBCefAppArmorUtils.java index bab95aed81e8..f8a03ffc0590 100644 --- a/platform/ui.jcef/jcef/JBCefAppArmorUtils.java +++ b/platform/ui.jcef/jcef/JBCefAppArmorUtils.java @@ -1,4 +1,7 @@ -// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. +// 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.ui.jcef; import com.intellij.CommonBundle; @@ -39,7 +42,7 @@ import java.util.Locale; * The class contains utilities for interacting with Linux AppArmor for solving the restricted user namespaces problem. * The problem description. */ -final class JBCefAppArmorUtils { +public final class JBCefAppArmorUtils { private static final Logger LOG = Logger.getInstance(JBCefAppArmorUtils.class); private static final LazyInitializer.LazyValue myUnprivilegedUserNameSpacesRestricted = LazyInitializer.create( () -> areUnprivilegedUserNameSpacesRestrictedImpl());