From aed2556383c81aea6308d812f717700c73568c29 Mon Sep 17 00:00:00 2001 From: Chad Pilkey Date: Tue, 29 Jan 2019 16:34:18 -0800 Subject: [PATCH] fix build warnings about duplicate variable names --- .../main/model/users/NetConnectionDelegate.as | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/model/users/NetConnectionDelegate.as b/bigbluebutton-client/src/org/bigbluebutton/main/model/users/NetConnectionDelegate.as index 94c1576f72..8340c2f278 100755 --- a/bigbluebutton-client/src/org/bigbluebutton/main/model/users/NetConnectionDelegate.as +++ b/bigbluebutton-client/src/org/bigbluebutton/main/model/users/NetConnectionDelegate.as @@ -752,9 +752,9 @@ package org.bigbluebutton.main.model.users logData.logCode = "reconnect_attempt_failed"; LOGGER.info(JSON.stringify(logData)); - var attemptFailedEvent:BBBEvent = new BBBEvent(BBBEvent.RECONNECT_CONNECTION_ATTEMPT_FAILED_EVENT); - attemptFailedEvent.payload.type = ReconnectionManager.BIGBLUEBUTTON_CONNECTION; - dispatcher.dispatchEvent(attemptFailedEvent); + var attemptFailedEvent1:BBBEvent = new BBBEvent(BBBEvent.RECONNECT_CONNECTION_ATTEMPT_FAILED_EVENT); + attemptFailedEvent1.payload.type = ReconnectionManager.BIGBLUEBUTTON_CONNECTION; + dispatcher.dispatchEvent(attemptFailedEvent1); } else { reconnecting = true; LiveMeeting.inst().me.authTokenValid = false; @@ -787,9 +787,9 @@ package org.bigbluebutton.main.model.users logData.logCode = "reconnect_attempt_failed"; LOGGER.info(JSON.stringify(logData)); - var attemptFailedEvent:BBBEvent = new BBBEvent(BBBEvent.RECONNECT_CONNECTION_ATTEMPT_FAILED_EVENT); - attemptFailedEvent.payload.type = ReconnectionManager.BIGBLUEBUTTON_CONNECTION; - dispatcher.dispatchEvent(attemptFailedEvent); + var attemptFailedEvent2:BBBEvent = new BBBEvent(BBBEvent.RECONNECT_CONNECTION_ATTEMPT_FAILED_EVENT); + attemptFailedEvent2.payload.type = ReconnectionManager.BIGBLUEBUTTON_CONNECTION; + dispatcher.dispatchEvent(attemptFailedEvent2); } else { logData.reason = reason; logData.app = "apps";