Skip to content

Commit

Permalink
advanced logging for compareTo
Browse files Browse the repository at this point in the history
  • Loading branch information
ffritze committed Aug 7, 2024
1 parent f093280 commit 028426f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,7 @@ public void setDatasetFieldDefaultValues(List<DatasetFieldDefaultValue> datasetF

@Override
public int compareTo(DatasetFieldType o) {
System.out.println("This " + this.getName() + " " + this.hashCode() + " has DPO " + this.getDisplayOrder() + " and Object " + o.getName() + " " + o.hashCode() + " has DPO " + o.getDisplayOrder());
return Integer.compare(this.getDisplayOrder(), (o.getDisplayOrder()));
}

Expand Down

0 comments on commit 028426f

Please sign in to comment.