1
0

[MINOR] Add toString method to TimelineLayoutVersion to make it more readable (#1244)

This commit is contained in:
leesf
2020-01-18 09:22:55 +08:00
committed by Suneel Marthi
parent 292c1e2ff4
commit 5471d8f0c2

View File

@@ -76,4 +76,9 @@ public class TimelineLayoutVersion implements Serializable, Comparable<TimelineL
public int compareTo(TimelineLayoutVersion o) {
return Integer.compare(version, o.version);
}
@Override
public String toString() {
return String.valueOf(version);
}
}