This commit is contained in:
Natalia Ukhorskaya
2014-02-18 13:40:23 +04:00
parent df3ed5059c
commit 000dd4478a
9 changed files with 16 additions and 18 deletions
@@ -59,7 +59,7 @@ public class TraceBasedErrorReporter implements ErrorReporter {
}
@Override
public void reportAnnotationLoadingError(@NotNull String message, @Nullable Exception exception) {
public void reportLoadingError(@NotNull String message, @Nullable Exception exception) {
LOG.error(message, exception);
}
}
@@ -153,7 +153,7 @@ public class VirtualFileKotlinClass implements KotlinJvmBinaryClass {
}
@Override
public void loadMemberAnnotations(@NotNull final MemberVisitor memberVisitor) {
public void visitMembers(@NotNull final MemberVisitor memberVisitor) {
try {
new ClassReader(file.contentsToByteArray()).accept(new ClassVisitor(ASM4) {
@Override