Update abseil-cpp to remove override (#322)

Closes #322

COPYBARA_INTEGRATE_REVIEW=https://github.com/bazelbuild/rules_java/pull/322 from fmeum:patch-3 ab0eba8fd5356edef6f48bf247650a4664b6a5bc
PiperOrigin-RevId: 810799669
Change-Id: Ib4113c9090964f676def76dc67caf2125b7264da
diff --git a/MODULE.bazel b/MODULE.bazel
index f900a93..2da6b17 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -14,17 +14,7 @@
 
 # Required by @remote_java_tools, which is loaded via module extension.
 bazel_dep(name = "rules_license", version = "0.0.3")
-bazel_dep(name = "abseil-cpp", version = "20250814.0", repo_name = "com_google_absl")
-
-# TODO: Remove this override after the next release of abseil-cpp.
-single_version_override(
-    module_name = "abseil-cpp",
-    patch_strip = 1,
-    patches = [
-        "//third_party:abseil-cpp_load-cc-rules.patch",
-    ],
-    version = "20250814.0",
-)
+bazel_dep(name = "abseil-cpp", version = "20250814.1", repo_name = "com_google_absl")
 
 single_version_override(
     module_name = "protobuf",
diff --git a/third_party/abseil-cpp_load-cc-rules.patch b/third_party/abseil-cpp_load-cc-rules.patch
deleted file mode 100644
index e3dfe2b..0000000
--- a/third_party/abseil-cpp_load-cc-rules.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 2370ccf579bd0fb4484c343389b8121c6b7f9bb8 Mon Sep 17 00:00:00 2001
-From: Keith Smiley <keithbsmiley@gmail.com>
-Date: Sat, 20 Sep 2025 20:02:06 -0700
-Subject: [PATCH] PR #1939: Add missing rules_cc loads
-
-Imported from GitHub PR https://github.com/abseil/abseil-cpp/pull/1939
-
-This is required for use with bazel past this commit: https://github.com/bazelbuild/bazel/commit/71ca0ed111ff3d842a0d23bc3a46bd2e6745491d
-
-Most files do this already these were just missing
-
-Merge f7d58947afdb0549c9e5c287a5e5851a7d72e1e0 into 620d600442769b7ec4b61bd87667899908eec4ef
-
-Merging this change closes #1939
-
-COPYBARA_INTEGRATE_REVIEW=https://github.com/abseil/abseil-cpp/pull/1939 from keith:ks/add-missing-rules_cc-loads f7d58947afdb0549c9e5c287a5e5851a7d72e1e0
-PiperOrigin-RevId: 809556509
-Change-Id: I494a118b851685a03393485514a3b6fbe3a10597
----
- absl/debugging/BUILD.bazel | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/absl/debugging/BUILD.bazel b/absl/debugging/BUILD.bazel
-index ed7cc493e90..7cc053e783e 100644
---- a/absl/debugging/BUILD.bazel
-+++ b/absl/debugging/BUILD.bazel
-@@ -14,6 +14,9 @@
- # limitations under the License.
- #
- 
-+load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
-+load("@rules_cc//cc:cc_library.bzl", "cc_library")
-+load("@rules_cc//cc:cc_test.bzl", "cc_test")
- load(
-     "//absl:copts/configure_copts.bzl",
-     "ABSL_DEFAULT_COPTS",