- remove some dependencies

This commit is contained in:
Richard Alam 2013-06-11 22:43:40 +00:00
parent 0edc415b2e
commit 341509e817

View File

@ -30,7 +30,6 @@ import org.red5.server.adapter.ApplicationAdapter;
import org.red5.server.api.Red5;
import java.util.HashMap;
import java.util.Map; import org.bigbluebutton.conference.BigBlueButtonSession; import org.bigbluebutton.conference.Constants; import org.bigbluebutton.conference.service.recorder.RecorderApplication;
import org.bigbluebutton.conference.service.recorder.participants.ParticipantsEventRecorder;
public class ParticipantsHandler extends ApplicationAdapter implements IApplication{
private static Logger log = Red5LoggerFactory.getLogger( ParticipantsHandler.class, "bigbluebutton" );
@ -39,7 +38,6 @@ public class ParticipantsHandler extends ApplicationAdapter implements IApplicat
private static final String APP = "USERS";
private ParticipantsApplication participantsApplication;
private RecorderApplication recorderApplication;
@Override
public boolean appConnect(IConnection conn, Object[] params) {
@ -143,9 +141,6 @@ public class ParticipantsHandler extends ApplicationAdapter implements IApplicat
participantsApplication = a;
}
public void setRecorderApplication(RecorderApplication a) {
recorderApplication = a;
}
private BigBlueButtonSession getBbbSession() {
return (BigBlueButtonSession) Red5.getConnectionLocal().getAttribute(Constants.SESSION);