diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckDisplayCollisions.java b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckDisplayCollisions.java
index 9a8635548be..e98642d9ff5 100644
--- a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckDisplayCollisions.java
+++ b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckDisplayCollisions.java
@@ -349,8 +349,7 @@ public CheckCLDR handleCheck(
Matcher matcher = null;
String message =
- "Can't have same translation as {0}. Please change either this name or the other one. "
- + "See Unique-Names.";
+ "Can't have same translation as {0}. Please change either this name or the other one.";
Matcher currentAttributesToIgnore = ignoreAltAndCountAttributes;
Set paths;
if (myType == Type.DECIMAL_FORMAT) {
diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckForCopy.java b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckForCopy.java
index 398d0db0b70..cba3897c760 100644
--- a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckForCopy.java
+++ b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckForCopy.java
@@ -268,10 +268,7 @@ private void addFailure(List result, Failure failure) {
.setSubtype(Subtype.sameAsEnglish)
.setCheckOnSubmit(false)
.setMessage(
- "The value is the same as in English: see Fixing Errors and Warnings.",
- new Object[] {}));
+ "The value is the same as in English.", new Object[] {}));
break;
case same_as_code:
result.add(
@@ -281,10 +278,7 @@ private void addFailure(List result, Failure failure) {
.setSubtype(Subtype.sameAsCode)
.setCheckOnSubmit(false)
.setMessage(
- "The value is the same as the 'code': see Fixing Errors and Warnings.",
- new Object[] {}));
+ "The value is the same as the 'code'.", new Object[] {}));
break;
default:
}
diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckForExemplars.java b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckForExemplars.java
index 8b8df2b397f..ee79b41cdc5 100644
--- a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckForExemplars.java
+++ b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckForExemplars.java
@@ -851,13 +851,7 @@ private void addMissingMessage(
}
scriptString.append("}");
}
- final String helpUrl =
- "http://cldr.unicode.org/translation/-core-data/exemplars#TOC-Handling-Warnings-in-Exemplar-characters";
- final String message =
- "The characters \u200E{0}\u200E {1} {2}. "
- + "For what to do, see Handling Warnings in Exemplar Characters.";
+ final String message = "The characters \u200E{0}\u200E {1} {2}.";
result.add(
new CheckStatus()
.setCause(this)