Omaha #4360 Fix bug in the copy constructor.
Former-commit-id: 6c2fce8058cd60bbee19a3f903c735f0c78c43b6
This commit is contained in:
parent
368a4a2b2d
commit
7e8faee168
1 changed files with 7 additions and 7 deletions
|
@ -124,13 +124,13 @@ public class GridInfoRecord extends PersistableDataObject<Integer> {
|
|||
}
|
||||
|
||||
public GridInfoRecord(GridInfoRecord record) {
|
||||
this.datasetId = record.getDatasetId();
|
||||
this.level = record.getLevel();
|
||||
this.location = record.getLocation();
|
||||
this.parameter = record.getParameter();
|
||||
this.ensembleId = record.getEnsembleId();
|
||||
this.secondaryId = record.getSecondaryId();
|
||||
this.id = record.getId();
|
||||
this.datasetId = record.datasetId;
|
||||
this.level = record.level;
|
||||
this.location = record.location;
|
||||
this.parameter = record.parameter;
|
||||
this.ensembleId = record.ensembleId;
|
||||
this.secondaryId = record.secondaryId;
|
||||
this.id = record.id;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
|
|
Loading…
Add table
Reference in a new issue