Omaha #4360 Fix bug in the copy constructor.

Former-commit-id: 6c2fce8058cd60bbee19a3f903c735f0c78c43b6
This commit is contained in:
Roger Ferrel 2015-08-05 12:48:33 -05:00
parent 368a4a2b2d
commit 7e8faee168

View file

@ -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() {