Skip to content

Commit e3805a1

Browse files
committed
fix: fix lint issues
Signed-off-by: vikhy-aws <[email protected]>
1 parent 32c7c84 commit e3805a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/org/opensearch/commons/alerting/action/ToggleMonitorRequest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ToggleMonitorRequest : ActionRequest {
1919
enabled: Boolean,
2020
seqNo: Long,
2121
primaryTerm: Long,
22-
method: RestRequest.Method,
22+
method: RestRequest.Method
2323
) : super() {
2424
this.monitorId = monitorId
2525
this.enabled = enabled
@@ -34,7 +34,7 @@ class ToggleMonitorRequest : ActionRequest {
3434
enabled = sin.readBoolean(),
3535
seqNo = sin.readLong(),
3636
primaryTerm = sin.readLong(),
37-
method = sin.readEnum(RestRequest.Method::class.java),
37+
method = sin.readEnum(RestRequest.Method::class.java)
3838
)
3939

4040
@Throws(IOException::class)

0 commit comments

Comments
 (0)