Skip to content

Commit ae8b3ec

Browse files
committed
Updated for alias support in 1.2.16
1 parent 59d05db commit ae8b3ec

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.red5</groupId>
55
<artifactId>red5-parent</artifactId>
6-
<version>1.2.13</version>
6+
<version>1.2.16</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-client</artifactId>

src/main/java/org/red5/client/net/rtmp/OutboundHandshake.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import org.red5.server.net.rtmp.RTMPHandshake;
2121
import org.red5.server.net.rtmp.message.Constants;
2222
import org.red5.server.util.FileUtil;
23-
import org.slf4j.LoggerFactory;
2423

2524
/**
2625
* Performs handshaking for client connections.
@@ -50,12 +49,10 @@ public class OutboundHandshake extends RTMPHandshake {
5049

5150
public OutboundHandshake() {
5251
super(RTMPConnection.RTMP_NON_ENCRYPTED);
53-
log = LoggerFactory.getLogger(OutboundHandshake.class);
5452
}
5553

5654
public OutboundHandshake(byte handshakeType) {
5755
super(handshakeType);
58-
log = LoggerFactory.getLogger(OutboundHandshake.class);
5956
}
6057

6158
public OutboundHandshake(byte handshakeType, int algorithm) {

0 commit comments

Comments
 (0)