blob: 02a384ff0760a37dc42c12f444999c91200db4a9 [file] [log] [blame]
/**
* @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;
}
}