Skip to content

Commit c4e5f7c

Browse files
committed
notify and context properties are private
1 parent 56b2c33 commit c4e5f7c

File tree

1 file changed

+2
-4
lines changed
  • src/org/puremvc/typescript/multicore/patterns/observer

1 file changed

+2
-4
lines changed

src/org/puremvc/typescript/multicore/patterns/observer/Observer.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,13 @@ module puremvc
3434
{
3535
/**
3636
* The notification method of the interested object.
37-
* @protected
3837
*/
39-
notify:Function = null;
38+
private notify:Function = null;
4039

4140
/**
4241
* The notification context of the interested object.
43-
* @protected
4442
*/
45-
context:any = null;
43+
private context:any = null;
4644

4745
/**
4846
* Constructs an <code>Observer</code> instance.

0 commit comments

Comments
 (0)