mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
27 lines
372 B
Java
27 lines
372 B
Java
/**
|
|
* @author Dmitry Batkovich <dmitry.batkovich@jetbrains.com>
|
|
*/
|
|
public class TestIndex {
|
|
|
|
public void statMethod(JarFile f) {
|
|
f.getEntry();
|
|
f.getEntry();
|
|
f.getEntry();
|
|
f.getEntry();
|
|
f.getEntry();
|
|
f.getEntry();
|
|
f.getEntry();
|
|
f.getEntry();
|
|
}
|
|
}
|
|
|
|
class JarFile {
|
|
class JarEntry {
|
|
}
|
|
|
|
JarEntry getEntry() {
|
|
return null;
|
|
}
|
|
}
|
|
|