Skip to content

Commit

Permalink
Merge pull request #16 from rwth-acis/develop
Browse files Browse the repository at this point in the history
BodyAssertionOperator: Setter for id
  • Loading branch information
pdolif authored Aug 2, 2022
2 parents 420dafe + b3c3a4a commit 6203344
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ publishing {
maven(MavenPublication) {
groupId = 'i5'
artifactId = 'las2peer-api-test-model'
version = '0.1.8'
version = '0.1.9'

from components.java
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,10 @@ public int getId() {
return this.id;
}

public void setId(int id) {
this.id = id;
}

public int getOperatorId() {
return this.operatorId;
}
Expand Down

0 comments on commit 6203344

Please sign in to comment.