File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
src/main/java/org/red5/client/net/rtmp Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.red5</groupId >
5
5
<artifactId >red5-parent</artifactId >
6
- <version >1.2.13 </version >
6
+ <version >1.2.16 </version >
7
7
</parent >
8
8
<modelVersion >4.0.0</modelVersion >
9
9
<artifactId >red5-client</artifactId >
Original file line number Diff line number Diff line change 20
20
import org .red5 .server .net .rtmp .RTMPHandshake ;
21
21
import org .red5 .server .net .rtmp .message .Constants ;
22
22
import org .red5 .server .util .FileUtil ;
23
- import org .slf4j .LoggerFactory ;
24
23
25
24
/**
26
25
* Performs handshaking for client connections.
@@ -50,12 +49,10 @@ public class OutboundHandshake extends RTMPHandshake {
50
49
51
50
public OutboundHandshake () {
52
51
super (RTMPConnection .RTMP_NON_ENCRYPTED );
53
- log = LoggerFactory .getLogger (OutboundHandshake .class );
54
52
}
55
53
56
54
public OutboundHandshake (byte handshakeType ) {
57
55
super (handshakeType );
58
- log = LoggerFactory .getLogger (OutboundHandshake .class );
59
56
}
60
57
61
58
public OutboundHandshake (byte handshakeType , int algorithm ) {
You can’t perform that action at this time.
0 commit comments