Skip to content

Commit

Permalink
Remove private setter
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcampolo committed Dec 6, 2016
1 parent 6b54284 commit 50ecb10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Segmentio/Source/SegmentioOptions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import UIKit

public struct SegmentioItem {

private(set) public var title: String?
private(set) public var image: UIImage?
private(set) public var badgeCount: Int?
private(set) public var badgeColor: UIColor?
public var title: String?
public var image: UIImage?
public var badgeCount: Int?
public var badgeColor: UIColor?

public init(title: String?, image: UIImage?) {
self.title = title
Expand Down

0 comments on commit 50ecb10

Please sign in to comment.