Skip to content

Commit

Permalink
Added support for N25 dictionary.
Browse files Browse the repository at this point in the history
  • Loading branch information
depryf committed May 20, 2024
1 parent 992731d commit d36d031
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 @@ -10,7 +10,7 @@

<NaaccrDictionary dictionaryUri="http://naaccr.org/naaccrxml/naaccr-dictionary-250.xml"
naaccrVersion="250"
specificationVersion="1.7"
specificationVersion="1.8"
dateLastModified="2024-05-20T12:00:00-04:00"
description="NAACCR 24 base dictionary"
xmlns="http://naaccr.org/naaccrxml">
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 @@ -126,7 +126,7 @@ else if (StringUtils.isBlank(item.getDataType()))
NaaccrDictionary dictionary = new NaaccrDictionary();
dictionary.setDictionaryUri("http://naaccr.org/naaccrxml/naaccr-dictionary-250.xml");
dictionary.setNaaccrVersion("250");
dictionary.setSpecificationVersion("1.7");
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");
Expand Down

0 comments on commit d36d031

Please sign in to comment.