Skip to content

Commit

Permalink
ns (remove system.out later)
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Dec 19, 2010
1 parent 01c0830 commit cef0fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jgroups/util/RetransmitTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public void compact() {
new_size=Math.max(new_size, num_rows); // don't fall below the initial size defined

if(new_size < matrix.length) {
// System.out.println("<<< compacting matrix from " + matrix.length + " rows to " + new_size + " rows");
System.out.println("<<< compacting matrix from " + matrix.length + " rows to " + new_size + " rows");
Message[][] new_matrix=new Message[new_size][];
System.arraycopy(matrix, from, new_matrix, 0, range);
matrix=new_matrix;
Expand Down

0 comments on commit cef0fdb

Please sign in to comment.