Skip to content

Commit

Permalink
Apply formatter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
echeran committed Jun 7, 2024
1 parent 91bfee9 commit 2ed5748
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import java.util.Map;
import java.util.Map.Entry;
import java.util.TreeMap;
import java.util.regex.Pattern;
import org.unicode.cldr.util.CLDRConfig;
import org.unicode.cldr.util.CLDRFile;
import org.unicode.cldr.util.CLDRFile.DraftStatus;
Expand Down Expand Up @@ -202,16 +201,16 @@ public static void main(String[] args) throws IOException {
factory.make(locale, true, DraftStatus.contributed); // don't include

// This is the CLDR "effective coverage level"
Level coverageLevel = CalculatedCoverageLevels.getInstance().getEffectiveCoverageLevel(locale);
Level coverageLevel =
CalculatedCoverageLevels.getInstance()
.getEffectiveCoverageLevel(locale);

if (coverageLevel == null || !coverageLevel.isAtLeast(Level.MODERN)) {
continue;
}


Map<String, String> displayNames =
prepareDisplayNames(
cldrFile, onlyConstructCompound, testInputLocales);
prepareDisplayNames(cldrFile, onlyConstructCompound, testInputLocales);

pw.println("\n@locale=" + locale);
String languageDisplayVal = onlyConstructCompound ? "standard" : "dialect";
Expand Down

0 comments on commit 2ed5748

Please sign in to comment.