Skip to content

Commit

Permalink
Merge 7203a11 into a780bbf
Browse files Browse the repository at this point in the history
  • Loading branch information
Sujay Garlanka committed May 19, 2020
2 parents a780bbf + 7203a11 commit b96b5b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Next Release
- Fix issue for `getIsExternallyOwned()` for Files and Folders ([#808](https://github.com/box/box-java-sdk/pull/808))

## 2.47.0 [2020-04-23]
- Add support for the uploader display name field for Files and File Versions ([#791](https://github.com/box/box-java-sdk/pull/791))
- Fix path parameter sanitization ([#797](https://github.com/box/box-java-sdk/pull/797))
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/box/sdk/BoxFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -1579,7 +1579,7 @@ public class Info extends BoxItem.Info {
private URL previewLink;
private BoxLock lock;
private boolean isWatermarked;
private Boolean isExternallyOwned;
private boolean isExternallyOwned;
private JsonObject metadata;
private Map<String, Map<String, Metadata>> metadataMap;
private List<Representation> representations;
Expand Down
2 changes: 1 addition & 1 deletion 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

0 comments on commit b96b5b5

Please sign in to comment.