Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug #138

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Bug #138

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
testando actions
  • Loading branch information
rafasaf committed Jul 3, 2024
commit b4c70198dacf4d90a79e6bbb871e2c6091b16904
2 changes: 1 addition & 1 deletion src/main/java/br/ufmg/dcc/Calculadora.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class Calculadora {

public int soma(int x, int y) {
return x + y + 1;
return x + y;
}

public int subtrai(int x, int y) {
Expand Down