We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1f8b18 commit e3058beCopy full SHA for e3058be
pom.xml
@@ -10,7 +10,7 @@
10
</parent>
11
<groupId>ua.javaclub</groupId>
12
<artifactId>tmp2310</artifactId>
13
- <version>0.0.1-SNAPSHOT</version>
+ <version>0.0.10</version>
14
<name>tmp2310</name>
15
<description>Demo project for Spring Boot</description>
16
<properties>
src/main/java/ua/javaclub/tmp2310/CalculatorService.java
@@ -5,4 +5,7 @@ public class CalculatorService {
5
public Integer sum(Integer a, Integer b) {
6
return a + b;
7
}
8
+ public Integer diff(Integer a, Integer b) {
9
+ return a - b;
+ }
0 commit comments