问答精选数据流修改
This commit is contained in:
@ -58,10 +58,11 @@ public class UserManager {
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
String userId = null;
|
||||
if (mUserInfoEntity != null) {
|
||||
return mUserInfoEntity.getUserId();
|
||||
userId = mUserInfoEntity.getUserId();
|
||||
}
|
||||
return "";
|
||||
return userId == null ? "" : userId;
|
||||
}
|
||||
|
||||
public void setCommunityId(Context context, String communityId, String communityName) {
|
||||
|
||||
Reference in New Issue
Block a user