OPENIDE fix compile problems

(cherry picked from commit 332ac019e4)
This commit is contained in:
Nikita Iarychenko
2025-04-18 12:43:04 +04:00
parent 403b93d902
commit 1807625450

View File

@@ -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.
* <a href="https://youtrack.jetbrains.com/articles/JBR-A-11">The problem description.</a>
*/
final class JBCefAppArmorUtils {
public final class JBCefAppArmorUtils {
private static final Logger LOG = Logger.getInstance(JBCefAppArmorUtils.class);
private static final LazyInitializer.LazyValue<Boolean> myUnprivilegedUserNameSpacesRestricted = LazyInitializer.create(
() -> areUnprivilegedUserNameSpacesRestrictedImpl());