Skip to content

Commit

Permalink
Swift 2.0 updated for Xcode 7 beta 4
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgindi committed Sep 18, 2015
1 parent fcf5f60 commit dc4e3c4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/BarLineChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class BarLineChartViewBase: ChartViewBase, UIGestureRecognizerDelegate
super.init(frame: frame)
}

public required init(coder aDecoder: NSCoder)
public required init?(coder aDecoder: NSCoder)
{
super.init(coder: aDecoder)
}
Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/ChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public class ChartViewBase: UIView, ChartAnimatorDelegate
initialize()
}

public required init(coder aDecoder: NSCoder)
public required init?(coder aDecoder: NSCoder)
{
super.init(coder: aDecoder)
initialize()
Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/PieChartView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class PieChartView: PieRadarChartViewBase
super.init(frame: frame)
}

public required init(coder aDecoder: NSCoder)
public required init?(coder aDecoder: NSCoder)
{
super.init(coder: aDecoder)
}
Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/PieRadarChartViewBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class PieRadarChartViewBase: ChartViewBase
super.init(frame: frame)
}

public required init(coder aDecoder: NSCoder)
public required init?(coder aDecoder: NSCoder)
{
super.init(coder: aDecoder)
}
Expand Down
2 changes: 1 addition & 1 deletion Charts/Classes/Charts/RadarChartView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class RadarChartView: PieRadarChartViewBase
super.init(frame: frame)
}

public required init(coder aDecoder: NSCoder)
public required init?(coder aDecoder: NSCoder)
{
super.init(coder: aDecoder)
}
Expand Down

0 comments on commit dc4e3c4

Please sign in to comment.