Remove stale TODO regarding member rule combination for -if rule.

The scenario we worried is that some of combinations of member rules are
equivalent if we're trying all combintaions of all sizes: kind of
range(memberKeepRules.size()). But we already limit the size of elements
per combination as the size of member rules to satisfy, and thus such
case does not happen at all.

Bug: 79486261
Change-Id: I0d05806fc2a803e7e2280fc46a5ca0c20faf7eea
diff --git a/src/main/java/com/android/tools/r8/shaking/RootSetBuilder.java b/src/main/java/com/android/tools/r8/shaking/RootSetBuilder.java
index 7485f31..75523bf 100644
--- a/src/main/java/com/android/tools/r8/shaking/RootSetBuilder.java
+++ b/src/main/java/com/android/tools/r8/shaking/RootSetBuilder.java
@@ -390,8 +390,8 @@
 
       // Depending on which members trigger the -if rule, the application of the subsequent
       // -keep rule may vary (due to back references). So, we need to try literally all
-      // combinations of live members.
-      // TODO(b/79486261): Some of those are equivalent from the point of view of -if rule.
+      // combinations of live members. But, we can at least limit the number of elements per
+      // combination as the size of member rules to satisfy.
       Sets.combinations(filteredMembers, memberKeepRules.size())
           .forEach(
               combination -> {