Skip to content

Commit

Permalink
Merge branch 'hotfix/4.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
jelovirt committed May 5, 2024
2 parents 2309e5d + ac46f3a commit dac9a31
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'signing'
group = 'org.dita-ot'
archivesBaseName = 'dost'
/** Semver version number */
version = '4.2.2'
version = '4.2.3'

description = """DITA Open Toolkit"""

Expand Down
3 changes: 3 additions & 0 deletions src/main/java/org/dita/dost/writer/KeyrefPaser.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ public void setKeyDefinition(final KeyScope definitionMap) {
* Get set of link targets which have normal processing role. Paths are relative to current file.
*/
public Set<URI> getNormalProcessingRoleTargets() {
if (normalProcessingRoleTargets == null) {
return Set.of();
}
return Collections.unmodifiableSet(normalProcessingRoleTargets);
}

Expand Down

0 comments on commit dac9a31

Please sign in to comment.