Skip to content

Commit

Permalink
Stop manually setting versions in AacOrder.java (#935)
Browse files Browse the repository at this point in the history
  • Loading branch information
nedley authored Sep 17, 2024
1 parent 186bc71 commit 2f083f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
9 changes: 0 additions & 9 deletions docs/emoji/aac.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,6 @@
Once the emoji are finalized for new version of TR51, or there is a new version
of CLDR, run AacOrder.java to generate 3 new files which will be checked in.

Fix the versions at the top of the file, such as:
```
private static final VersionInfo VERSION = Emoji.VERSION12;
private static final VersionInfo UCD_VERSION = Emoji.VERSION12;
```

The emoji version will be ≥ the UCD version.

**Results:**

:construction: **TODO**: Work with Mark on working replacements for "draft" URLs.
Expand Down
4 changes: 2 additions & 2 deletions unicodetools/src/main/java/org/unicode/tools/AacOrder.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@

public class AacOrder {

private static final VersionInfo VERSION = Emoji.VERSION15_1;
private static final VersionInfo UCD_VERSION = Emoji.VERSION15_1;
private static final VersionInfo VERSION = Emoji.VERSION_TO_GENERATE;
private static final VersionInfo UCD_VERSION = Emoji.VERSION_TO_GENERATE_UNICODE;

private static final CandidateData CANDIDATE_DATA = CandidateData.getInstance();

Expand Down

0 comments on commit 2f083f7

Please sign in to comment.