Skip to content

Commit af7492a

Browse files
committed
name, body, type properties are private
1 parent c4e5f7c commit af7492a

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

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

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,18 @@ module puremvc
3333
{
3434
/**
3535
* The name of the <code>Notification</code>.
36-
*
37-
* @protected
3836
*/
39-
name:string = null;
37+
private name:string = null;
4038

4139
/**
4240
* The body data to send with the <code>Notification</code>.
43-
*
44-
* @protected
4541
*/
46-
body:any = null;
42+
private body:any = null;
4743

4844
/**
4945
* The type identifier of the <code>Notification</code>.
50-
*
51-
* @protected
5246
*/
53-
type:string = null;
47+
private type:string = null;
5448

5549
/**
5650
* Constructs a <code>Notification</code> instance.

0 commit comments

Comments
 (0)