1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Merge pull request #124 from owncloud/stable

Merge release 0.9.12 from stable to master
This commit is contained in:
David A. Velasco 2016-06-08 16:58:09 +02:00
commit 48f35c14b4

View File

@ -140,9 +140,10 @@ public class UpdateRemoteShareOperation extends RemoteOperation {
/** /**
* Enable upload permissions to update in Share resource. * Enable upload permissions to update in Share resource.
* *
* @param publicUpload Upload Permission to set to the target share. * @param publicUpload Upload permission to set to the target share.
* Null results in no update applied to the upload permission.
*/ */
public void setPublicUpload(boolean publicUpload) { public void setPublicUpload(Boolean publicUpload) {
mPublicUpload = publicUpload; mPublicUpload = publicUpload;
} }