Code quality and remove reference to DefaultMatrixToConverter.SUPPORTED_PATHS in MatrixToConverter

This commit is contained in:
Benoit Marty 2024-04-02 15:51:59 +02:00
parent fda5df848d
commit 67a9765bd3
4 changed files with 10 additions and 9 deletions

View file

@ -53,9 +53,11 @@ class DefaultMatrixToConverter @Inject constructor() : MatrixToConverter {
}
}
private val SUPPORTED_PATHS = listOf(
"/#/room/",
"/#/user/",
"/#/group/"
)
companion object {
val SUPPORTED_PATHS = listOf(
"/#/room/",
"/#/user/",
"/#/group/"
)
}
}