Skip to content

Commit

Permalink
Merge pull request #2056 from leo150/master
Browse files Browse the repository at this point in the history
Fix NSCopying implementation in CandleChartDataEntry
  • Loading branch information
liuxuan30 committed Jan 11, 2017
2 parents 3fe3817 + 71e9f87 commit 7c4a06a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ open class CandleChartDataEntry: ChartDataEntry
{
let copy = super.copyWithZone(zone) as! CandleChartDataEntry
copy.high = high
copy.high = low
copy.high = open
copy.high = close
copy.low = low
copy.open = open
copy.close = close
return copy
}
}

0 comments on commit 7c4a06a

Please sign in to comment.