Skip to content

Commit

Permalink
Fixed mistake in dictionary description.
Browse files Browse the repository at this point in the history
  • Loading branch information
depryf committed May 21, 2024
1 parent d36d031 commit 0aebaf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/naaccr-dictionary-250.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
naaccrVersion="250"
specificationVersion="1.8"
dateLastModified="2024-05-20T12:00:00-04:00"
description="NAACCR 24 base dictionary"
description="NAACCR 25 base dictionary"
xmlns="http://naaccr.org/naaccrxml">
<ItemDefs>
<ItemDef naaccrId="abstractedBy"
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/lab/CreateNaaccr25Dictionary.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ else if (StringUtils.isBlank(item.getDataType()))
dictionary.setSpecificationVersion("1.8");
Date lastModifiedValue = Date.from(LocalDateTime.now().withHour(12).withMinute(0).withSecond(0).withNano(0).atZone(ZoneId.systemDefault()).toInstant());
dictionary.setDateLastModified(lastModifiedValue);
dictionary.setDescription("NAACCR 24 base dictionary");
dictionary.setDescription("NAACCR 25 base dictionary");
dictionary.setItems(items);

NaaccrXmlDictionaryUtils.validateBaseDictionary(dictionary);
Expand Down

0 comments on commit 0aebaf1

Please sign in to comment.