rename property in Column annotation isStatic
This commit is contained in:
parent
26a1d434a8
commit
38092fcc74
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -14,7 +14,7 @@ public @interface Column {
|
|||
|
||||
String value() default "";
|
||||
|
||||
boolean shareStatic() default false;
|
||||
boolean isStatic() default false;
|
||||
|
||||
boolean forceQuote() default false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue