Fix compilation for maven build

This commit is contained in:
pTalanov
2012-05-16 17:42:38 +04:00
parent feaf218836
commit c8fe0080c7
3 changed files with 13 additions and 11 deletions
@@ -45,13 +45,7 @@ public class K2JSCompilerPlugin implements CompilerPlugin {
List<JetFile> sources = context.getFiles();
if (bindingContext != null && sources != null && project != null) {
Config config = new Config(project) {
@NotNull
@Override
protected List<JetFile> generateLibFiles() {
return new ArrayList<JetFile>();
}
};
Config config = Config.getEmptyConfig(project);
try {