Skip to content

Commit

Permalink
- FastArray.toString() was incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Aug 8, 2024
1 parent 1b49820 commit 43aecc7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/jgroups/util/FastArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ protected String print(int limit) {
boolean first=true;
StringBuilder sb=new StringBuilder();
int count=0;
for(T el: elements) {
for(int i=0; i < index; i++) {
T el=elements[i];
if(first)
first=false;
else
Expand Down

0 comments on commit 43aecc7

Please sign in to comment.