Render Class-constant as javaClass<T>()

This commit is contained in:
Denis Zharkov
2015-04-15 17:52:33 +03:00
parent 2a03994ecb
commit 98ffa3b475
24 changed files with 47 additions and 47 deletions
@@ -87,7 +87,7 @@ public class AnnotationDescriptorResolveTest extends AbstractAnnotationDescripto
public void testJavaClassAnnotation() throws Exception {
String content = getContent("AnnClass(javaClass<MyClass>())");
String expectedAnnotation = "AnnClass(a = MyClass.class: Class<MyClass>)";
String expectedAnnotation = "AnnClass(a = javaClass<MyClass>(): Class<MyClass>)";
doTest(content, expectedAnnotation);
}
}