Allow place KotlinSignature annotation to methods

This commit is contained in:
Nikolay Krasko
2012-10-05 12:57:14 +04:00
parent 9476a8aeb4
commit 896e78eb04
@@ -23,7 +23,7 @@ import java.lang.annotation.Target;
* @author Evgeny Gerashchenko
* @since 5/23/12
*/
@Target({ElementType.METHOD, ElementType.TYPE, ElementType.CONSTRUCTOR})
@Target({ElementType.METHOD, ElementType.TYPE, ElementType.CONSTRUCTOR, ElementType.FIELD})
public @interface KotlinSignature {
String value();
}