Skip to content

Commit

Permalink
Name the MutableProperty lock
Browse files Browse the repository at this point in the history
  • Loading branch information
neilpa committed May 27, 2015
1 parent 3aa1dab commit bd5712f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ReactiveCocoa/Swift/Property.swift
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ public final class MutableProperty<T>: MutablePropertyType {

/// Initializes the property with the given value to start.
public init(_ initialValue: T) {
lock.name = "org.reactivecocoa.ReactiveCocoa.MutableProperty"

(producer, observer) = SignalProducer<T, NoError>.buffer(1)

_value = initialValue
Expand Down

0 comments on commit bd5712f

Please sign in to comment.