repl: fix two anonymous functions

This commit is contained in:
Stepan Koltsov
2012-06-09 23:25:40 +04:00
parent 3bf648ed56
commit f11767319a
7 changed files with 25 additions and 9 deletions
@@ -249,6 +249,7 @@ public class DescriptorRenderer implements Renderer<DeclarationDescriptor> {
declarationDescriptor.accept(rootVisitor, stringBuilder);
if (stringBuilder.length() == 0) {
// don't use toString here because render may be called from toString
stringBuilder.append(declarationDescriptor.getClass().getName() + "@" + System.identityHashCode(declarationDescriptor));
}