Skip to content

Commit 2fc99ff

Browse files
author
Alex Klymenko
committed
checkstyle: fix formatting
1 parent 339d96b commit 2fc99ff

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/thealgorithms/datastructures/queues

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/datastructures/queues/Queue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public String toString() {
146146
int index = (front + i) % maxSize;
147147
sb.append(queueArray[index]).append(", ");
148148
}
149-
sb.setLength(sb.length() - 2); // Remove the last comma and space
149+
sb.setLength(sb.length() - 2); // Remove the last comma and space
150150
sb.append("]");
151151
return sb.toString();
152152
}

0 commit comments

Comments
 (0)