mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
GitOrigin-RevId: 3b5c00d8ff20b8d0bb6005bc450921085d2da9b2
14 lines
470 B
Java
14 lines
470 B
Java
package com.intellij.openapi.projectRoots.files;
|
|
|
|
import com.intellij.openapi.projectRoots.testFramework.TestJdkAnnotationsFilesProvider;
|
|
import com.intellij.testFramework.common.BazelTestUtil;
|
|
|
|
import java.nio.file.Path;
|
|
|
|
public class TestJdkAnnotationsFilesProviderImpl implements TestJdkAnnotationsFilesProvider {
|
|
@Override
|
|
public Path getJdkAnnotationsPath() {
|
|
return BazelTestUtil.findRunfilesDirectoryUnderCommunityOrUltimate("java/jdkAnnotations");
|
|
}
|
|
}
|