diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-05 01:17:41 -0400 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-05 01:17:41 -0400 |
| commit | 0403ee1f31d3f127a44aaabdfd21785d7efa6430 (patch) | |
| tree | cb1cc796e7002ef61f68dda7ff798e36c3e7f90d /src/client/northstar/core/attribute/AttributeModel.ts | |
| parent | dc20420e4757824974ba4b2ea3926d541f5e8b60 (diff) | |
Fixed remaining linter warnings
Diffstat (limited to 'src/client/northstar/core/attribute/AttributeModel.ts')
| -rw-r--r-- | src/client/northstar/core/attribute/AttributeModel.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/northstar/core/attribute/AttributeModel.ts b/src/client/northstar/core/attribute/AttributeModel.ts index 124a5b45a..230bfecc8 100644 --- a/src/client/northstar/core/attribute/AttributeModel.ts +++ b/src/client/northstar/core/attribute/AttributeModel.ts @@ -34,7 +34,7 @@ export class ColumnAttributeModel extends AttributeModel { } public Equals(other: ColumnAttributeModel): boolean { - return this.Attribute.rawName == other.Attribute.rawName; + return this.Attribute.rawName === other.Attribute.rawName; } } @@ -105,7 +105,7 @@ export class BackendAttributeModel extends AttributeModel { } public Equals(other: BackendAttributeModel): boolean { - return this.Id == other.Id; + return this.Id === other.Id; } }
\ No newline at end of file |
