mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-16 16:17:03 +05:30
chore: fix Detekt build
This commit is contained in:
parent
0dd2a3be6f
commit
ef5242f115
8 changed files with 5 additions and 28 deletions
|
@ -8,7 +8,9 @@ package dev.msfjarvis.claw.injection
|
|||
|
||||
object Components {
|
||||
|
||||
@PublishedApi @Suppress("ObjectPropertyName") internal val _components = mutableSetOf<Any>()
|
||||
@PublishedApi
|
||||
@Suppress("ObjectPropertyName", "ObjectPropertyNaming")
|
||||
internal val _components = mutableSetOf<Any>()
|
||||
|
||||
fun add(component: Any) {
|
||||
_components.add(component)
|
||||
|
|
|
@ -6,4 +6,4 @@
|
|||
*/
|
||||
package dev.msfjarvis.claw.injection.scopes
|
||||
|
||||
abstract class AppScope private constructor()
|
||||
@Suppress("UnnecessaryAbstractClass") abstract class AppScope private constructor()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue