rename property in Column annotation isStatic

This commit is contained in:
Albert Shift 2015-03-18 22:15:17 -07:00
parent 26a1d434a8
commit 38092fcc74
2 changed files with 2 additions and 2 deletions

View file

@ -137,7 +137,7 @@ public class CasserMappingProperty<E> implements CasserProperty<E> {
Column column = getterMethod.getDeclaredAnnotation(Column.class);
if (column != null) {
isStatic = column.shareStatic();
isStatic = column.isStatic();
}
staticInfo = true;

View file

@ -14,7 +14,7 @@ public @interface Column {
String value() default "";
boolean shareStatic() default false;
boolean isStatic() default false;
boolean forceQuote() default false;
}