소스 검색

android: remove JitsiMeetViewAdapter

It was never used and typicallt the Activity / Fragment holding the
JitsiMeetView object will be the listener.

In addition, once we refactor the events they will be reduced into far fewer.
master
Saúl Ibarra Corretgé 6 년 전
부모
커밋
54bab793e5
1개의 변경된 파일0개의 추가작업 그리고 51개의 파일을 삭제
  1. 0
    51
      android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetViewAdapter.java

+ 0
- 51
android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetViewAdapter.java 파일 보기

@@ -1,51 +0,0 @@
1
-/*
2
- * Copyright @ 2017-present Atlassian Pty Ltd
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- *     http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
-
17
-package org.jitsi.meet.sdk;
18
-
19
-import java.util.Map;
20
-
21
-/**
22
- * Implements {@link JitsiMeetViewListener} so apps don't have to add stubs for
23
- * all methods in the interface if they are only interested in some.
24
- */
25
-public abstract class JitsiMeetViewAdapter
26
-    implements JitsiMeetViewListener {
27
-
28
-    @Override
29
-    public void onConferenceFailed(Map<String, Object> data) {
30
-    }
31
-
32
-    @Override
33
-    public void onConferenceJoined(Map<String, Object> data) {
34
-    }
35
-
36
-    @Override
37
-    public void onConferenceLeft(Map<String, Object> data) {
38
-    }
39
-
40
-    @Override
41
-    public void onConferenceWillJoin(Map<String, Object> data) {
42
-    }
43
-
44
-    @Override
45
-    public void onConferenceWillLeave(Map<String, Object> data) {
46
-    }
47
-
48
-    @Override
49
-    public void onLoadConfigError(Map<String, Object> data) {
50
-    }
51
-}

Loading…
취소
저장