Compilation fixed

This commit is contained in:
Andrey Breslav
2012-10-17 17:52:02 +04:00
parent e52277401d
commit e4c89f800f
@@ -55,7 +55,7 @@ public class JavaCopyPastePostProcessor implements CopyPastePostProcessor<TextBl
StringBuilder result = new StringBuilder();
for (PsiElement e : buffer) {
String converted = new Converter().elementToKotlin(e);
String converted = new Converter(file.getProject()).elementToKotlin(e);
if (!converted.isEmpty()) {
result.append(converted).append(eol);
}