InterfaceMethodProcessorFacade clean-up

Bug: 191656218
Change-Id: I5a924eee08ef33b5e644692763f463553b8464fb
diff --git a/src/main/java/com/android/tools/r8/ir/desugar/itf/InterfaceMethodProcessorFacade.java b/src/main/java/com/android/tools/r8/ir/desugar/itf/InterfaceMethodProcessorFacade.java
index 249dca8..71844b0 100644
--- a/src/main/java/com/android/tools/r8/ir/desugar/itf/InterfaceMethodProcessorFacade.java
+++ b/src/main/java/com/android/tools/r8/ir/desugar/itf/InterfaceMethodProcessorFacade.java
@@ -34,7 +34,6 @@
 
   private List<InterfaceDesugaringProcessor> instantiateInterfaceDesugaringProcessors(
       AppView<?> appView, InterfaceMethodRewriter rewriter) {
-    final List<InterfaceDesugaringProcessor> interfaceDesugaringProcessors;
 
     // During L8 compilation, emulated interfaces are processed to be renamed, to have
     // their interfaces fixed-up and to generate the emulated dispatch code.
@@ -51,9 +50,7 @@
     // classes if needed.
     InterfaceProcessor interfaceProcessor = new InterfaceProcessor(appView, rewriter);
 
-    // The interface processors must be ordered so that finalization of the processing is performed
-    // in that order. The emulatedInterfaceProcessor has to be last at this point to avoid renaming
-    // emulated interfaces before the other processing.
+    // The processors can be listed in any order.
     return ImmutableList.of(classProcessor, interfaceProcessor, emulatedInterfaceProcessor);
   }