mirror of https://github.com/apache/cloudstack.git
Remove wrong final modifier from Created field in SnapshotDataStoreVO,
TemplateDataStoreVO and VolumeDataStoreVO.
This commit is contained in:
parent
7a1ee00275
commit
9da56fe1fe
|
|
@ -59,7 +59,7 @@ public class SnapshotDataStoreVO implements StateObject<ObjectInDataStoreStateMa
|
|||
private long snapshotId;
|
||||
|
||||
@Column(name = GenericDaoBase.CREATED_COLUMN)
|
||||
private final Date created = null;
|
||||
private Date created = null;
|
||||
|
||||
@Column(name = "last_updated")
|
||||
@Temporal(value = TemporalType.TIMESTAMP)
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ public class TemplateDataStoreVO implements StateObject<ObjectInDataStoreStateMa
|
|||
private DataStoreRole dataStoreRole;
|
||||
|
||||
@Column(name = GenericDaoBase.CREATED_COLUMN)
|
||||
private final Date created = null;
|
||||
private Date created = null;
|
||||
|
||||
@Column(name = "last_updated")
|
||||
@Temporal(value = TemporalType.TIMESTAMP)
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ public class VolumeDataStoreVO implements StateObject<ObjectInDataStoreStateMach
|
|||
private long zoneId;
|
||||
|
||||
@Column(name = GenericDaoBase.CREATED_COLUMN)
|
||||
private final Date created = null;
|
||||
private Date created = null;
|
||||
|
||||
@Column(name = "last_updated")
|
||||
@Temporal(value = TemporalType.TIMESTAMP)
|
||||
|
|
|
|||
Loading…
Reference in New Issue