diff --git a/src/Notification.ts b/src/Notification.ts index 9de95ce424..88749c9c0a 100644 --- a/src/Notification.ts +++ b/src/Notification.ts @@ -107,7 +107,7 @@ export class Notification { if (typeof value !== 'undefined') { return new Notification('N', value); } - return this.undefinedValueNotification; + return Notification.undefinedValueNotification; } /** @@ -126,6 +126,6 @@ export class Notification { * @return {Notification} The valueless "complete" Notification. */ static createComplete(): Notification { - return this.completeNotification; + return Notification.completeNotification; } }