Skip to content

Commit

Permalink
Update return description for ObjectInformation meta methods
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCreosote committed Oct 18, 2023
1 parent 38af5b2 commit fe8df81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/us/kbase/workspace/database/ObjectInformation.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public Optional<UncheckedUserMetadata> getUserMetaData() {
/** Returns the user supplied and automatically generated metadata for the object as a map.
*
* @param nullIfEmpty return null rather than an empty map if there is no metadata available.
* @return the metadata or null.
* @return the metadata (which may be empty) or null.
*/
public Map<String, String> getUserMetaDataMap(final boolean nullIfEmpty) {
return getMetadataMap(usermeta, nullIfEmpty);
Expand All @@ -177,7 +177,7 @@ public Optional<UncheckedUserMetadata> getAdminUserMetaData() {
/** Returns the administrative user supplied metadata for the object as a map.
* @param nullIfEmpty return null rather than an empty map if there is no metadata available.
* @return the metadata or null.
* @return the metadata (which may be empty) or null.
*/
public Map<String, String> getAdminUserMetaDataMap(final boolean nullIfEmpty) {
return getMetadataMap(adminmeta, nullIfEmpty);
Expand Down

0 comments on commit fe8df81

Please sign in to comment.