Remove removal of ct.sym.

Since we remove the jdk.compiler module in
3880ddc695f539c9fa185cc73bb0049b6cce0b6d, this is no longer included
anyway. Deleting it here breaks building the minimal jdk, which we need
to do for the java.desktop removal.

Commit 2/N

This is part of #7502 and #6314.

RELNOTES: None

Closes #8086.

PiperOrigin-RevId: 244156777
diff --git a/src/minimize_jdk.sh b/src/minimize_jdk.sh
index b7f0f25..cfa7760 100755
--- a/src/minimize_jdk.sh
+++ b/src/minimize_jdk.sh
@@ -46,10 +46,6 @@
     reduced/
   # These are necessary for --host_jvm_debug to work.
   cp bin/dt_socket.dll bin/jdwp.dll reduced/bin
-  if [[ "$modules" != "ALL-MODULE-PATH" ]]; then
-    # Only necessary for compilation, which doesn't happen with the minimal JDK.
-    rm reduced/lib/ct.sym
-  fi
   zip -r -9 ../reduced.zip reduced/
   cd ../..
   mv "tmp.$$/reduced.zip" "$out"
@@ -68,10 +64,6 @@
   else
     cp lib/libdt_socket.so lib/libjdwp.so reduced/lib
   fi
-  if [[ "$modules" != "ALL-MODULE-PATH" ]]; then
-    # Only necessary for compilation, which doesn't happen with the minimal JDK.
-    rm reduced/lib/ct.sym
-  fi
   GZIP=-9 tar -zcf ../reduced.tgz reduced
   cd ..
   mv reduced.tgz "$out"