소스 검색

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;


불러오는 중...
취소
저장