From 742e4f3e6080243e404c97b333fb8c64621ffabd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89amonn=20McManus?= Date: Wed, 1 Apr 2026 15:34:27 -0700 Subject: [PATCH] Update a comment about imports that are only used in Javadoc. PiperOrigin-RevId: 893145313 --- .../com/google/googlejavaformat/java/RemoveUnusedImports.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/google/googlejavaformat/java/RemoveUnusedImports.java b/core/src/main/java/com/google/googlejavaformat/java/RemoveUnusedImports.java index 18745a809..4b2211eae 100644 --- a/core/src/main/java/com/google/googlejavaformat/java/RemoveUnusedImports.java +++ b/core/src/main/java/com/google/googlejavaformat/java/RemoveUnusedImports.java @@ -58,8 +58,8 @@ import org.jspecify.annotations.Nullable; /** - * Removes unused imports from a source file. Imports that are only used in javadoc are also - * removed, and the references in javadoc are replaced with fully qualified names. + * Removes unused imports from a source file. Imports that are only used in javadoc are nevertheless + * kept. */ public class RemoveUnusedImports {