Skip to content

Commit 3c08602

Browse files
authored
Merge pull request #333 from AppDevNext/EntryToString
Entry toString format
2 parents 493c9bf + 0ba3216 commit 3c08602

File tree

1 file changed

+1
-1
lines changed
  • MPChartLib/src/main/java/com/github/mikephil/charting/data

1 file changed

+1
-1
lines changed

MPChartLib/src/main/java/com/github/mikephil/charting/data/Entry.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ open class Entry : BaseEntry, Parcelable, Serializable {
101101
* returns a string representation of the entry containing x-index and value
102102
*/
103103
override fun toString(): String {
104-
return "Entry, x: $x y: $y"
104+
return "Entry x=$x y=$y"
105105
}
106106

107107
override fun describeContents(): Int {

0 commit comments

Comments
 (0)