Skip to content

Commit b4cde69

Browse files
committed
chore(facade): make normalizeBlank less nonsensical
1 parent 7531b48 commit b4cde69

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

modules/angular2/src/facade/lang.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,8 @@ dynamic getMapKey(value) {
202202
return value.isNaN ? _NAN_KEY : value;
203203
}
204204

205-
dynamic normalizeBlank(obj) {
206-
return isBlank(obj) ? null : obj;
207-
}
205+
// TODO: remove with https://github.com/angular/angular/issues/3055
206+
dynamic normalizeBlank(obj) => obj;
208207

209208
bool normalizeBool(bool obj) {
210209
return isBlank(obj) ? false : obj;

0 commit comments

Comments
 (0)