Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions src/main/java/com/company/ServiceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

public class ServiceImpl implements Service {
public int firstMethod(int a, int b) {
return 0;
return a + b;
}

public int secondMethod(int a, int b) {
return 0;
return a - b;
}

public int thirdMethod(int a, int b) {
return 0;
return a * b;
}

public int fourthMethod(int a, int b) {
return 0;
return a / b;
}
}
1 change: 1 addition & 0 deletions variant.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1