Skip to content

Commit 70dd35b

Browse files
authored
Remove Debug (#37)
* Start 2.1.1 * Remove debug
1 parent dd50e4f commit 70dd35b

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Run the [NATS messaging system](https://nats.io) Server from your Java code.
66

7-
**Current Release**: 2.0.1   **Current Snapshot**: 2.0.2-SNAPSHOT
7+
**Current Release**: 2.1.0   **Current Snapshot**: 2.1.1-SNAPSHOT
88

99
[![License Apache 2](https://img.shields.io/badge/License-Apache2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
1010
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats-server-runner/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats-server-runner)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
id("signing")
1212
}
1313

14-
def jarVersion = "2.1.0"
14+
def jarVersion = "2.1.1"
1515
group = 'io.nats'
1616

1717
def isRelease = System.getenv("BUILD_EVENT") == "release"

src/main/java/io/nats/NatsServerRunner.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,6 @@ public static void connect(int port, long connCheckWait) {
512512
in.close();
513513

514514
String sbs = sb.toString();
515-
System.out.println("!!! " + sbs);
516515
if (!sbs.contains("INFO") || !sbs.contains("\"port\":" + port)) {
517516
throw new RuntimeException("Invalid Server Info: " + sbs);
518517
}

0 commit comments

Comments
 (0)