Skip to content

Commit eb50eef

Browse files
committed
fix: lint codebase
1 parent 7572c70 commit eb50eef

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

inventory-framework-platform-minestom/src/main/kotlin/me/devnatan/inventoryframework/pipeline/GlobalClickInterceptor.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ class GlobalClickInterceptor : PipelineInterceptor<VirtualView> {
2020

2121
// inherit cancellation so we can un-cancel it
2222
subject.isCancelled =
23-
event.isCancelled ||
24-
subject.config.isOptionSet(ViewConfig.CANCEL_ON_CLICK, true)
23+
event.isCancelled || subject.config.isOptionSet(ViewConfig.CANCEL_ON_CLICK, true)
2524
subject.root.onClick(subject)
2625
}
2726
}

0 commit comments

Comments
 (0)