mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
11 lines
347 B
Java
11 lines
347 B
Java
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
package com.intellij;
|
|
|
|
import com.intellij.openapi.application.ex.PathManagerEx;
|
|
|
|
public final class PathJavaTestUtil {
|
|
public static String getCommunityJavaTestDataPath() {
|
|
return PathManagerEx.getTestDataPath();
|
|
}
|
|
}
|