remove errant and unnecessary check

This commit is contained in:
Myk Melez 2015-02-09 15:47:19 -08:00
Родитель 9a835d43fd
Коммит 1f7b2e82b6
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -530,9 +530,7 @@ Native["com/sun/cdc/io/j2me/file/DefaultFileHandler.flush.()V"] = function() {
var pathname = util.fromJavaString(this.$nativePath);
DEBUG_FS && console.log("DefaultFileHandler.flush: " + pathname);
var fd = this.$nativeDescriptor;
if (fd) {
fs.flush(fd);
}
fs.flush(fd);
};
Native["com/sun/cdc/io/j2me/file/DefaultFileHandler.close.()V"] = function() {