Fix gradle format task.

This commit is contained in:
Greyson Parrelli
2026-02-16 14:22:44 -05:00
committed by Alex Hart
parent 9cefe0bc04
commit b48b1f031e
57 changed files with 164 additions and 186 deletions

View File

@@ -8,7 +8,6 @@ import androidx.activity.enableEdgeToEdge
import androidx.activity.viewModels
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.material3.Surface
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.ui.Modifier
import androidx.fragment.app.FragmentActivity
@@ -49,10 +48,10 @@ abstract class MediaSendActivity : FragmentActivity() {
backStack = backStack,
callback = viewModel,
modifier = Modifier.fillMaxSize(),
cameraSlot = { },
textStoryEditorSlot = { },
videoEditorSlot = { },
sendSlot = { }
cameraSlot = { },
textStoryEditorSlot = { },
videoEditorSlot = { },
sendSlot = { }
)
}
}

View File

@@ -38,4 +38,4 @@ object MediaSendDependencies {
fun provideMediaSendRepository(): MediaSendRepository
fun providePreUploadRepository(): PreUploadRepository
}
}
}

View File

@@ -18,7 +18,7 @@ import org.signal.mediasend.MediaRecipientId
* Threading: all callback methods are invoked on this manager's serialized background executor
* thread (i.e., not the main thread).
*/
interface PreUploadRepository {
interface PreUploadRepository {
/**
* Performs pre-upload side-effects (e.g., create attachment state + enqueue jobs).
*
@@ -75,4 +75,4 @@ interface PreUploadRepository {
*/
@WorkerThread
fun deleteAbandonedPreuploadedAttachments(context: Context): Int
}
}