Skip to content

Commit

Permalink
Fixed typo in change. This closes #119
Browse files Browse the repository at this point in the history
  • Loading branch information
aroberson authored and stevengill committed Nov 9, 2015
1 parent 53835be commit 70247c0
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions src/android/ContentFilesystem.java
Expand Up @@ -18,22 +18,19 @@ Licensed to the Apache Software Foundation (ASF) under one
*/
package org.apache.cordova.file;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.OutputStream;

import org.apache.cordova.CordovaResourceApi;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.content.ContentResolver;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.provider.DocumentsContract;
import android.provider.MediaStore;
import android.provider.OpenableColumns;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import org.apache.cordova.CordovaResourceApi;
import org.json.JSONException;
import org.json.JSONObject;

public class ContentFilesystem extends Filesystem {

Expand Down Expand Up @@ -193,7 +190,6 @@ protected Long lastModifiedDateForCursor(Cursor cursor) {
}
if (columnIndex != -1) {
String dateStr = cursor.getString(columnIndex);
if (dateStr != null) {
if (dateStr != null) {
return Long.parseLong(dateStr);
}
Expand Down

0 comments on commit 70247c0

Please sign in to comment.