Add METHOD target for use with AutoValue's abstract property methods

This commit is contained in:
Michael Evans 2015-08-14 14:08:56 -04:00
parent b4978a8062
commit 64d74db8ae
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ import java.lang.annotation.Target;
* @author Joel Leitch
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface SerializedName {
/**