File tree Expand file tree Collapse file tree
src/main/java/org/snaccooperative/data Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 GITHUB_TOKEN : ${{ github.token }}
4242 with :
4343 upload_url : ${{ steps.create_release.outputs.upload_url }}
44- asset_path : ./target/datamodel-1.2.1 .jar
45- asset_name : datamodel-1.2.1 .jar
44+ asset_path : ./target/datamodel-1.2.2 .jar
45+ asset_name : datamodel-1.2.2 .jar
4646 asset_content_type : application/java-archive
4747 - name : Publish package
4848 run : mvn --batch-mode deploy
Original file line number Diff line number Diff line change 44
55 <groupId >org.snaccooperative</groupId >
66 <artifactId >datamodel</artifactId >
7- <version >1.2.1 </version >
7+ <version >1.2.2 </version >
88 <build >
99 <plugins >
1010 <plugin >
Original file line number Diff line number Diff line change @@ -307,7 +307,12 @@ public String getNote()
307307 * @return string A human-readable summary string of this object
308308 */
309309 public String toString () {
310- return "Relation: " + (this .type != null ? this .type .getTerm () + " " : "" ) + this .content ;
310+ if (this .content != null ) {
311+ return "Relation: " + (this .type != null ? this .type .getTerm () + " " : "" ) + this .content ;
312+ }
313+ else {
314+ return "Relation: " + (this .type != null ? this .type .getTerm () + " " : "" ) + this .targetConstellation ;
315+ }
311316 }
312317
313318 /**
You can’t perform that action at this time.
0 commit comments