We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8a43f0 commit c20000cCopy full SHA for c20000c
Calculator.java
@@ -1,5 +1,5 @@
1
public class Calculator {
2
- public int add(int a, int b) { return a + b; }
+ public int add(int a, int b) { return a + b + 20; } // different modification in feature/calculator to create conflict
3
public int subtract(int a, int b) { return a - b; }
4
public int multiply(int a, int b) { return a * b; }
5
public int divide(int a, int b) {
0 commit comments