Skip to content

Commit

Permalink
[irods-contrib/metalnx-web#234] Allow retrieval of AVUs with empty at…
Browse files Browse the repository at this point in the history
…tribute names.
  • Loading branch information
korydraughn committed Jul 14, 2021
1 parent b033be9 commit e9f4f29
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ private MetaDataAndDomainData(final MetadataDomain metadataDomain, final String
throw new JargonException("domain object unique name is null or empty");
}

if (avuAttribute == null || avuAttribute.isEmpty()) {
throw new JargonException("avu attribute is null or empty");
if (avuAttribute == null) {
throw new JargonException("avu attribute is null");
}

if (avuValue == null) {
Expand Down

0 comments on commit e9f4f29

Please sign in to comment.