mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
Split performance plugin into core (and move it to community), async and YK. Move Cache Value Profiler to separate plugin. GitOrigin-RevId: 80e68080197e86d40c76be45d5438ec0eee39818
15 lines
281 B
Java
15 lines
281 B
Java
package com.jetbrains.performancePlugin;
|
|
|
|
import org.jetbrains.annotations.NonNls;
|
|
|
|
public final class TestUtil {
|
|
|
|
private TestUtil() {
|
|
}
|
|
|
|
@NonNls
|
|
public static String getDataSubPath(@NonNls String theme) {
|
|
return "/plugins/performanceTesting/testData/" + theme;
|
|
}
|
|
}
|