From c4022e62e08b7c036748fe9e8add3c0f15d99661 Mon Sep 17 00:00:00 2001 From: Mihail Slavchev Date: Mon, 14 Sep 2015 15:15:13 +0300 Subject: [PATCH] use isNullOrUndefined instead of isUndefined --- file-system/file-system-access.android.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-system/file-system-access.android.ts b/file-system/file-system-access.android.ts index e06ac1175..5fd9e4ed1 100644 --- a/file-system/file-system-access.android.ts +++ b/file-system/file-system-access.android.ts @@ -210,7 +210,7 @@ export class FileSystemAccess { var result = ""; while (true) { line = bufferedReader.readLine(); - if (types.isUndefined(line)) { + if (types.isNullOrUndefined(line)) { break; }