Skip to content

Commit

Permalink
fix: fix lint issues
Browse files Browse the repository at this point in the history
Signed-off-by: vikhy-aws <191836418+vikhy-aws@users.noreply.github.com>
  • Loading branch information
vikhy-aws committed Jan 22, 2025
1 parent 32c7c84 commit e3805a1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ToggleMonitorRequest : ActionRequest {
enabled: Boolean,
seqNo: Long,
primaryTerm: Long,
method: RestRequest.Method,
method: RestRequest.Method
) : super() {
this.monitorId = monitorId
this.enabled = enabled
Expand All @@ -34,7 +34,7 @@ class ToggleMonitorRequest : ActionRequest {
enabled = sin.readBoolean(),
seqNo = sin.readLong(),
primaryTerm = sin.readLong(),
method = sin.readEnum(RestRequest.Method::class.java),
method = sin.readEnum(RestRequest.Method::class.java)
)

@Throws(IOException::class)
Expand Down

0 comments on commit e3805a1

Please sign in to comment.