Cleanup codebase

This commit is contained in:
Benoit Marty 2025-08-13 16:42:01 +02:00
parent 586e840a74
commit 0dba05be0a
20 changed files with 28 additions and 48 deletions

View file

@ -14,7 +14,6 @@ import io.element.android.libraries.architecture.FeatureEntryPoint
import io.element.android.libraries.matrix.api.core.RoomId
interface CreateRoomEntryPoint : FeatureEntryPoint {
fun nodeBuilder(parentNode: Node, buildContext: BuildContext): NodeBuilder
interface NodeBuilder {
@ -22,7 +21,7 @@ interface CreateRoomEntryPoint : FeatureEntryPoint {
fun build(): Node
}
interface Callback: Plugin {
interface Callback : Plugin {
fun onRoomCreated(roomId: RoomId)
}
}