Files
Leonid Shalupovandintellij-monorepo-bot 188b7ef96f IJI-3282 Optimize imports
GitOrigin-RevId: 3b5c00d8ff20b8d0bb6005bc450921085d2da9b2
2026-01-31 17:03:42 +00:00

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");
}
}