Skip to content

Commit 4c464c1

Browse files
committed
change EXECUTION to EXECUTES
1 parent 668b32a commit 4c464c1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/jqassistant/contrib/plugin/kieker/api/model/ExecutionEventDescriptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
@Label("Execution")
1111
public interface ExecutionEventDescriptor extends EventDescriptor, Descriptor {
12-
@Relation("EXECUTION")
12+
@Relation("EXECUTES")
1313
MethodDescriptor getExecutedMethod();
1414

1515
void setExecutedMethod(MethodDescriptor executedMethod);

src/main/resources/META-INF/jqassistant-rules/kieker.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</description>
1010
<cypher><![CDATA[
1111
MATCH
12-
(e:Execution)-[:EXECUTION]->(m:Method)
12+
(e:Execution)-[:EXECUTES]->(m:Method)
1313
WITH
1414
m, SUM(e.afterTimestamp - e.beforeTimestamp) AS duration
1515
SET

0 commit comments

Comments
 (0)