Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Unified Diff: chrome/android/webapk/libs/client/src/org/chromium/webapk/lib/client/DexOptimizer.java

Issue 1989403004: Always suppress DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/findbugs_filter/findbugs_exclude.xml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/webapk/libs/client/src/org/chromium/webapk/lib/client/DexOptimizer.java
diff --git a/chrome/android/webapk/libs/client/src/org/chromium/webapk/lib/client/DexOptimizer.java b/chrome/android/webapk/libs/client/src/org/chromium/webapk/lib/client/DexOptimizer.java
index 3dbfdbbe9ff46d40a0e6d8e5e394837a128164df..143c043e5c6b5883c0e84b844e0bc3215e888e52 100644
--- a/chrome/android/webapk/libs/client/src/org/chromium/webapk/lib/client/DexOptimizer.java
+++ b/chrome/android/webapk/libs/client/src/org/chromium/webapk/lib/client/DexOptimizer.java
@@ -10,8 +10,6 @@ import android.util.Log;
import dalvik.system.DexClassLoader;
import dalvik.system.DexFile;
-import org.chromium.base.annotations.SuppressFBWarnings;
-
import java.io.File;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
@@ -32,7 +30,6 @@ public class DexOptimizer {
* @param dexFile Path to a dex file.
* @return True if the dex file was successfully optimized.
*/
- @SuppressFBWarnings("DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED")
public static boolean optimize(File dexFile) {
if (!dexFile.exists()) {
Log.e(TAG, "Dex file does not exist! " + dexFile.getAbsolutePath());
« no previous file with comments | « build/android/findbugs_filter/findbugs_exclude.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698