Skip to content

Commit

Permalink
arrayList Arreglo
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAmazingLife committed Sep 9, 2022
1 parent 2afafd7 commit 4bc766d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Listado 3/Problema26/src/problema26/Problema26.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Deposito {
private ArrayList<Bebida> al;

public Deposito() {
al = new ArrayList();
al = new ArrayList<Bebida>();
}

public void addBebida(Bebida b) {
Expand Down

0 comments on commit 4bc766d

Please sign in to comment.