Ver a proveniência

remove unnecessary comment

master
David há 4 anos
ascendente
cometimento
6de7a6ad35
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/ChainQueue.java

+ 1
- 1
src/ChainQueue.java Ver ficheiro

@@ -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;


Carregando…
Cancelar
Guardar