Skip to content

Commit aaedea0

Browse files
author
mengli
committed
Update build.xml and remove console output.
1 parent dd0f3f1 commit aaedea0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
<antcall target="javadoc" />
182182
<zip destfile="${project}_${ver}.zip" basedir=".">
183183
<include name="${project}_${ver}/**/*" />
184-
<include name="javadoc" />
184+
<include name="javadoc/**/*" />
185185
<include name="${project}_${ver}.jar" />
186186
<include name="src/**/*" />
187187
<include name="doc/**/*" />

src/main/com/schooner/MemCached/SchoonerSockIOPool.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,6 @@ public final SchoonerSockIO getConnection(String host) {
554554
// if we have items in the pool then we can return it
555555
ConcurrentLinkedQueue<SchoonerSockIO> sockets = socketPool.get(host);
556556
SchoonerSockIO socket = sockets.poll();
557-
System.out.println(poolCurrentConn.get(host).get());
558557
if (socket == null) {
559558
if (poolCurrentConn.get(host).get() < maxConn) {
560559
socket = createSocketWithAdd(host);

0 commit comments

Comments
 (0)