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

Commit

Permalink
Add missing override #19
Browse files Browse the repository at this point in the history
  • Loading branch information
tdauth committed Apr 2, 2019
1 parent a0d74cd commit 3850628
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ case class StateNeo4J(sutState: SutState, guiStateMachine: GuiStateMachineNeo4J)
result
}

def getIncomingActionTransitions: Map[Action, ActionTransitions] = Neo4jSessionFactory.transaction {
override def getIncomingActionTransitions: Map[Action, ActionTransitions] = Neo4jSessionFactory.transaction {
val filter = new Filter("end", ComparisonOperator.EQUALS, sutState)
val transitions = session.loadAll(classOf[ActionTransitionEntity], filter)
var result = HashMap[Action, ActionTransitions]()
Expand Down

0 comments on commit 3850628

Please sign in to comment.