Remove TODO from LegacyCompilationSupport.
PiperOrigin-RevId: 166722992
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/LegacyCompilationSupport.java b/src/main/java/com/google/devtools/build/lib/rules/objc/LegacyCompilationSupport.java
index e65b559..4350701 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/LegacyCompilationSupport.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/LegacyCompilationSupport.java
@@ -598,10 +598,8 @@
? StrippingType.DYNAMIC_LIB
: StrippingType.DEFAULT;
} catch (CommandLineExpansionException e) {
- // TODO(b/64941219): This code should be rewritten to not expand the command line
- // in the analysis phase
// This can't actually happen, because the command lines used by this class do
- // not throw.
+ // not throw. This class is slated for deletion, so throwing an assertion is good enough.
throw new AssertionError("Cannot fail to expand command line but did.", e);
}
}