This commit is contained in:
orange 2016-12-27 17:12:48 +01:00
parent cd86f6041b
commit 04ab740290
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class SimpleList{
len++;
}
public void remHead();{
public void remHead(){
if(node!=null){
node=node.next;
len--;