Sfoglia il codice sorgente

Merge pull request #77 from flatfox-ag/0.10.9

No depracation warning on instantiating dirs
Travis Nuttall 5 anni fa
parent
commit
9cb0f14753
No account linked to committer's email address
1 ha cambiato i file con 2 aggiunte e 11 eliminazioni
  1. 2
    11
      fs.js

+ 2
- 11
fs.js Vedi File

@@ -20,17 +20,8 @@ const dirs = {
20 20
   MovieDir : RNFetchBlob.MovieDir,
21 21
   DownloadDir : RNFetchBlob.DownloadDir,
22 22
   DCIMDir : RNFetchBlob.DCIMDir,
23
-  get SDCardDir() {
24
-    console.warn('SDCardDir as a constant is deprecated and will be removed in feature release. ' +
25
-                 'Use RNFetchBlob.android.getSDCardDir():Promise instead.');
26
-    return RNFetchBlob.SDCardDir;
27
-  },
28
-  get SDCardApplicationDir() {
29
-    console.warn('SDCardApplicationDir as a constant is deprecated and will be removed in feature release. ' +
30
-                 'Use RNFetchBlob.android.getSDCardApplicationDir():Promise instead. ' +
31
-                 'This variable can be empty on error in native code.');
32
-    return RNFetchBlob.SDCardApplicationDir;
33
-  },
23
+  SDCardDir: RNFetchBlob.SDCardDir, // Depracated
24
+  SDCardApplicationDir: RNFetchBlob.SDCardApplicationDir, // Deprecated
34 25
   MainBundleDir : RNFetchBlob.MainBundleDir,
35 26
   LibraryDir : RNFetchBlob.LibraryDir
36 27
 }