Skip to content

Commit

Permalink
Remove unnecessary Companion prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Oct 17, 2023
1 parent cee99e4 commit 4360e79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class CrtHttpEngine(public override val config: CrtHttpEngineConfig) : Ht
public operator fun invoke(block: CrtHttpEngineConfig.Builder.() -> Unit): CrtHttpEngine =
CrtHttpEngine(CrtHttpEngineConfig(block))

override val engineConstructor: (CrtHttpEngineConfig.Builder.() -> Unit) -> CrtHttpEngine = Companion::invoke
override val engineConstructor: (CrtHttpEngineConfig.Builder.() -> Unit) -> CrtHttpEngine = ::invoke
}

// FIXME - re-enable when SLF4j default is available
Expand Down

0 comments on commit 4360e79

Please sign in to comment.