System paths are okay now; no more special-casing.

Bug: 26895798
Change-Id: I41df87f1fe77c2c523272cf43b5db6a0a7395bed
diff --git a/src/com/android/settings/SettingsLicenseActivity.java b/src/com/android/settings/SettingsLicenseActivity.java
index aa2e8dd..e0b7efe 100644
--- a/src/com/android/settings/SettingsLicenseActivity.java
+++ b/src/com/android/settings/SettingsLicenseActivity.java
@@ -66,14 +66,11 @@
         intent.setPackage("com.android.htmlviewer");
 
         try {
-            StrictMode.disableDeathOnFileUriExposure();
             startActivity(intent);
             finish();
         } catch (ActivityNotFoundException e) {
             Log.e(TAG, "Failed to find viewer", e);
             showErrorAndFinish();
-        } finally {
-            StrictMode.enableDeathOnFileUriExposure();
         }
     }