Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
Use ArrayList #19
Browse files Browse the repository at this point in the history
Otherwise the conversion by OGM throws an exception.
  • Loading branch information
tdauth committed Apr 10, 2019
1 parent 31c8899 commit 97ed05d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class SutStateEntity(
@GeneratedValue
var id: java.lang.Long = null

@Relationship(`type` = "ACTIONS", direction = Relationship.OUTGOING) var incomingActionTransitions = new java.util.LinkedList[ActionTransitionEntity]()
@Relationship(`type` = "ACTIONS", direction = Relationship.INCOMING) var outgoingActionTransitions = new java.util.LinkedList[ActionTransitionEntity]()
@Relationship(`type` = "ACTIONS", direction = Relationship.OUTGOING) var incomingActionTransitions = new java.util.ArrayList[ActionTransitionEntity]()
@Relationship(`type` = "ACTIONS", direction = Relationship.INCOMING) var outgoingActionTransitions = new java.util.ArrayList[ActionTransitionEntity]()
}

object SutStateEntity {
Expand Down

0 comments on commit 97ed05d

Please sign in to comment.