Project structure fixed

This commit is contained in:
pTalanov
2012-02-27 19:07:59 +04:00
parent 8bfa313ad4
commit 953c33a846
31 changed files with 100 additions and 555 deletions
@@ -51,15 +51,6 @@ public class JetMainDetector {
return false;
}
@Nullable
public static String getMainClassFQName(@NotNull List<JetFile> files) {
JetFile file = getFileWithMain(files);
if (file == null) {
return null;
}
return JetPsiUtil.getFQName(file);
}
@Nullable
public static JetFile getFileWithMain(@NotNull List<JetFile> files) {
for (JetFile file : files) {