瀏覽代碼

remove unnecessary comment

master
David 4 年之前
父節點
當前提交
6de7a6ad35
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/ChainQueue.java

+ 1
- 1
src/ChainQueue.java 查看文件

@@ -46,7 +46,7 @@ public class ChainQueue<E> implements Queue<E> {
}

@Override
public boolean add(E input) { // Übergeben der "Data"
public boolean add(E input) {
if (getFirst() == null) { // is the first empty?
setFirst(new Node(input)); // yes? -> insert the node here
return true;


Loading…
取消
儲存