Browse Source

chore(cleaning): Remove old comments (#1019)

Andrei Pfeiffer 5 years ago
parent
commit
71a375f898

+ 0
- 2
android/src/main/java/com/reactnativecommunity/webview/RNCWebViewModule.java View File

242
 
242
 
243
   private Intent getVideoIntent() {
243
   private Intent getVideoIntent() {
244
     Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
244
     Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
245
-    // @todo from experience, for Videos we get the data onActivityResult
246
-    // so there's no need to store the Uri
247
     outputFileUri = getOutputUri(MediaStore.ACTION_VIDEO_CAPTURE);
245
     outputFileUri = getOutputUri(MediaStore.ACTION_VIDEO_CAPTURE);
248
     intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
246
     intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
249
     return intent;
247
     return intent;