openvidu-android: Removed unnecesary code lines in LocalParticipant

This commit is contained in:
csantosm 2020-11-09 17:44:13 +01:00
parent 5c00161454
commit f91a69706d

View File

@ -33,9 +33,7 @@ public class LocalParticipant extends Participant {
public LocalParticipant(String participantName, Session session, Context context, SurfaceViewRenderer localVideoView) {
super(participantName, session);
this.localVideoView = localVideoView;
this.localVideoView = localVideoView;
this.context = context;
this.participantName = participantName;
this.localIceCandidates = new ArrayList<>();
session.setLocalParticipant(this);
}