Skip to content

Commit

Permalink
Update BoxFolder.java
Browse files Browse the repository at this point in the history
  • Loading branch information
sujaygarlanka committed May 19, 2020
1 parent edb34a3 commit 7203a11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/box/sdk/BoxFolder.java
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ public class Info extends BoxItem.Info {
private boolean canNonOwnersInvite;
private boolean isWatermarked;
private boolean isCollaborationRestrictedToEnterprise;
private Boolean isExternallyOwned;
private boolean isExternallyOwned;
private Map<String, Map<String, Metadata>> metadataMap;
private List<String> allowedSharedLinkAccessLevels;
private List<String> allowedInviteeRoles;
Expand Down Expand Up @@ -1392,9 +1392,9 @@ public Metadata getMetadata(String templateName, String scope) {
/**
* Get the field is_externally_owned determining whether this folder is owned by a user outside of the
* enterprise.
* @return a Boolean indicating whether this folder is owned by a user outside the enterprise.
* @return a boolean indicating whether this folder is owned by a user outside the enterprise.
*/
public Boolean getIsExternallyOwned() {
public boolean getIsExternallyOwned() {
return this.isExternallyOwned;
}

Expand Down

0 comments on commit 7203a11

Please sign in to comment.