Skip to content

Commit

Permalink
Fix bug al eliminar menor de los mayoree
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVelezLl committed May 16, 2020
1 parent def989e commit 9372b7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Interfaz/InterfazArbol.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

/**
*
* @author CORE i7 ULTIMATE
* @author AlexVelezLl
*/
public class InterfazArbol {
private Pane root;
Expand Down
1 change: 1 addition & 0 deletions src/tda/AVL.java
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,7 @@ else if (borrar.getRight() != null) {
cambiar.setData(cambiar.getRight().getData());
cambiar.setRight(null);
}
borrar.setData(c_aux);
}

else {
Expand Down

0 comments on commit 9372b7e

Please sign in to comment.