Merge "Fix more [UnnecessaryParentheses]"
diff --git a/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/SubPlanTest.java b/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/SubPlanTest.java
index 75b5df6..9fb983a 100644
--- a/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/SubPlanTest.java
+++ b/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/SubPlanTest.java
@@ -130,7 +130,7 @@
 
     // Helper for generating Entry XML tags
     private String generateEntryXml(String abi, String name, String filter, boolean include) {
-        String filterType = (include) ? "include" : "exclude";
+        String filterType = include ? "include" : "exclude";
         Set<String> attributes = new HashSet<String>();
         if (filter != null) {
             attributes.add(String.format(XML_ATTR, filterType, filter));