Skip to content

Commit

Permalink
no need of own hashCode
Browse files Browse the repository at this point in the history
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
  • Loading branch information
tobiasKaminsky committed Aug 20, 2019
1 parent cb58df5 commit 1e7e1f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,12 @@ services:
- name: server
image: nextcloudci/server:server-3
commands:
- OC_PASS=user1 php occ user:add --password-from-env --display-name='User One' user1
- OC_PASS=user2 php occ user:add --password-from-env --display-name='User Two' user2
- php occ group:add users
- php occ group:adduser users user1
- php occ group:adduser users user2
- /initnc.sh
- OC_PASS=user1 php /var/www/html/occ user:add --password-from-env --display-name='User One' user1
- OC_PASS=user2 php /var/www/html/occ user:add --password-from-env --display-name='User Two' user2
- php /var/www/html/occ group:add users
- php /var/www/html/occ group:adduser users user1
- php /var/www/html/occ group:adduser users user2

trigger:
branch:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import android.os.Parcelable;

import androidx.annotation.Nullable;

import lombok.AllArgsConstructor;
import lombok.Getter;

Expand Down Expand Up @@ -62,7 +61,7 @@ protected ShareeUser(Parcel in) {

@Override
public int describeContents() {
return 0;
return this.hashCode();
}

@Override
Expand Down

0 comments on commit 1e7e1f6

Please sign in to comment.