Skip to content

Commit 97323cc

Browse files
committed
Versioned to 1.2.8
1 parent 5639610 commit 97323cc

File tree

3 files changed

+4
-32
lines changed

3 files changed

+4
-32
lines changed

pom.xml

Lines changed: 1 addition & 29 deletions
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.6</version>
6+
<version>1.2.8</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>red5-server-common</artifactId>
@@ -82,37 +82,9 @@
8282
<!-- compiler plugin node for JDK 8 only -->
8383
<plugin>
8484
<artifactId>maven-compiler-plugin</artifactId>
85-
<version>3.8.1</version><!--$NO-MVN-MAN-VER$-->
86-
<configuration>
87-
<!--
88-
<source>1.8</source>
89-
<target>1.8</target>
90-
-->
91-
<verbose>true</verbose>
92-
<fork>true</fork>
93-
<executable>/usr/lib/jvm/java-11-amazon-corretto/bin/javac</executable>
94-
<!--
95-
<compilerVersion>1.8</compilerVersion>
96-
-->
97-
</configuration>
9885
</plugin>
9986
<plugin>
10087
<artifactId>maven-toolchains-plugin</artifactId>
101-
<!-- executions/configuration node entries for JDK 8 only; remove for JDK 11 -->
102-
<executions>
103-
<execution>
104-
<goals>
105-
<goal>toolchain</goal>
106-
</goals>
107-
</execution>
108-
</executions>
109-
<configuration>
110-
<toolchains>
111-
<jdk>
112-
<version>[1.11,)</version>
113-
</jdk>
114-
</toolchains>
115-
</configuration>
11688
</plugin>
11789
<plugin>
11890
<artifactId>maven-jar-plugin</artifactId>

src/main/java/org/red5/server/api/Red5.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public final class Red5 {
6666
* Server capabilities
6767
*/
6868
public static final Integer CAPABILITIES = Integer.valueOf(33);
69-
69+
7070
/**
7171
* Since 128 is way too small, we'll use 1024 by default when publish or play are called.
7272
*/

src/main/java/org/red5/server/net/rtmp/RTMPConnection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
public abstract class RTMPConnection extends BaseConnection implements IStreamCapableConnection, IServiceCapableConnection, IReceivedMessageTaskQueueListener {
8686

8787
private static Logger log = LoggerFactory.getLogger(RTMPConnection.class);
88-
88+
8989
protected static boolean isTrace = log.isTraceEnabled();
90-
90+
9191
protected static boolean isDebug = log.isDebugEnabled();
9292

9393
public static final String RTMP_SESSION_ID = "rtmp.sessionid";

0 commit comments

Comments
 (0)