Skip to content

Commit fd34a3f

Browse files
committed
Remove wrong description from Update Variable Resource
Fixes #4089
1 parent 19acc95 commit fd34a3f

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

modules/flowable-cmmn-rest/src/main/java/org/flowable/cmmn/rest/service/api/runtime/caze/CaseInstanceVariableResource.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ public RestVariable getVariable(@ApiParam(name = "caseInstanceId") @PathVariable
6969

7070
@ApiOperation(value = "Update a single variable on a case instance", tags = { "Case Instance Variables" }, nickname = "updateCaseInstanceVariable",
7171
notes = "This endpoint can be used in 2 ways: By passing a JSON Body (RestVariable) or by passing a multipart/form-data Object.\n"
72-
+ "Nonexistent variables are created on the case instance and existing ones are overridden without any error.\n"
7372
+ "Note that scope is ignored, only global variables can be set in a case instance.\n"
7473
+ "NB: Swagger V2 specification doesn't support this use case that is why this endpoint might be buggy/incomplete if used with other tools.")
7574
@ApiImplicitParams({
@@ -123,7 +122,6 @@ public RestVariable updateVariable(@ApiParam(name = "caseInstanceId") @PathVaria
123122

124123
@ApiOperation(value = "Update a single variable on a case instance asynchronously", tags = { "Case Instance Variables" }, nickname = "updateCaseInstanceVariableAsync",
125124
notes = "This endpoint can be used in 2 ways: By passing a JSON Body (RestVariable) or by passing a multipart/form-data Object.\n"
126-
+ "Nonexistent variables are created on the case instance and existing ones are overridden without any error.\n"
127125
+ "Note that scope is ignored, only global variables can be set in a case instance.\n"
128126
+ "NB: Swagger V2 specification doesn't support this use case that is why this endpoint might be buggy/incomplete if used with other tools.")
129127
@ApiImplicitParams({

modules/flowable-rest/src/main/java/org/flowable/rest/service/api/runtime/process/ProcessInstanceVariableResource.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ public RestVariable getVariable(@ApiParam(name = "processInstanceId") @PathVaria
7575

7676
@ApiOperation(value = "Update a single variable on a process instance", tags = { "Process Instance Variables" }, nickname = "updateProcessInstanceVariable",
7777
notes = "This endpoint can be used in 2 ways: By passing a JSON Body (RestVariable) or by passing a multipart/form-data Object.\n"
78-
+ "Nonexistent variables are created on the process-instance and existing ones are overridden without any error.\n"
7978
+ "Note that scope is ignored, only local variables can be set in a process instance.\n"
8079
+ "NB: Swagger V2 specification does not support this use case that is why this endpoint might be buggy/incomplete if used with other tools.")
8180
@ApiImplicitParams({
@@ -128,7 +127,6 @@ public RestVariable updateVariable(@ApiParam(name = "processInstanceId") @PathVa
128127

129128
@ApiOperation(value = "Update a single variable on a process instance asynchronously", tags = { "Process Instance Variables" }, nickname = "updateProcessInstanceVariableAsync",
130129
notes = "This endpoint can be used in 2 ways: By passing a JSON Body (RestVariable) or by passing a multipart/form-data Object.\n"
131-
+ "Nonexistent variables are created on the process-instance and existing ones are overridden without any error.\n"
132130
+ "Note that scope is ignored, only local variables can be set in a process instance.\n"
133131
+ "NB: Swagger V2 specification does not support this use case that is why this endpoint might be buggy/incomplete if used with other tools.")
134132
@ApiImplicitParams({

0 commit comments

Comments
 (0)