Skip to content

Commit

Permalink
bumped to 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
steely-glint committed Aug 2, 2024
1 parent d5d66f4 commit 1a60c08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>pe.pi</groupId>
<artifactId>sctp4j</artifactId>
<version>1.0.6-SNAPSHOT</version>
<version>1.0.6</version>
<packaging>jar</packaging>

<name>sctp4j</name>
Expand Down Expand Up @@ -65,7 +65,7 @@
<dependency>
<groupId>com.phono</groupId>
<artifactId>srtplight</artifactId>
<version>1.1.10</version>
<version>1.1.11</version>
</dependency>
</dependencies>
<distributionManagement>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/pe/pi/sctp4j/sctp/dataChannel/DECP/DCOpen.java
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public boolean isAck() {
}

public SCTPStreamBehaviour mkStreamBehaviour() {
Log.debug("Making a behaviour for dcep stream " + _label);
Log.debug("Making a behaviour for dcep stream " + new String(_label));
SCTPStreamBehaviour behave = null;
switch (_chanType) {
case RELIABLE:
Expand All @@ -205,7 +205,7 @@ public SCTPStreamBehaviour mkStreamBehaviour() {
break;
}
if (behave != null) {
Log.debug(_label + " behaviour is " + behave.getClass().getSimpleName());
Log.debug(new String(_label) + " behaviour is " + behave.getClass().getSimpleName());
}

return behave;
Expand Down

0 comments on commit 1a60c08

Please sign in to comment.