Skip to content

Commit 6e3d163

Browse files
committed
add some description as comment
1 parent 7760636 commit 6e3d163

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/queue/usingArray/ArrayQueue.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ public class ArrayQueue<E> extends AbstractQueue<E> implements QueueADT<E> {
3333
* Current size of the queue.
3434
*/
3535
private int size;
36+
37+
/**
38+
* Current capacity of the queue.
39+
*/
3640
@Override
3741
public Iterator<E> iterator() {
3842
return null;

0 commit comments

Comments
 (0)