mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-21 20:45:29 +03:00
remove unneeded class cast
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
d858169668
commit
20ad889206
1 changed files with 2 additions and 2 deletions
|
@ -146,8 +146,8 @@ public class ChooseAccountDialogFragment extends DialogFragment {
|
|||
User userEntity;
|
||||
Participant participant;
|
||||
|
||||
for (Object userItem : userManager.getUsers().blockingGet()) {
|
||||
userEntity = (User) userItem;
|
||||
for (User userItem : userManager.getUsers().blockingGet()) {
|
||||
userEntity = userItem;
|
||||
Log.d(TAG, "---------------------");
|
||||
Log.d(TAG, "userEntity.getUserId() " + userEntity.getUserId());
|
||||
Log.d(TAG, "userEntity.getCurrent() " + userEntity.getCurrent());
|
||||
|
|
Loading…
Reference in a new issue