Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
wmontwe committed Oct 23, 2024
1 parent 5be7d9b commit 0c73857
Showing 1 changed file with 24 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import android.app.ActivityOptions.MODE_BACKGROUND_ACTIVITY_START_ALLOWED
import android.content.IntentSender
import android.os.Build
import android.os.Bundle
import androidx.annotation.RequiresApi
import androidx.fragment.app.Fragment

/**
Expand All @@ -21,10 +20,14 @@ object OpenPgpIntentStarter {

activity.startIntentSender(
intentSender,
/* fillInIntent = */ null,
/* flagsMask = */ 0,
/* flagsValues = */ 0,
/* extraFlags = */ 0,
/* fillInIntent = */
null,
/* flagsMask = */
0,
/* flagsValues = */
0,
/* extraFlags = */
0,
options,
)
}
Expand All @@ -37,10 +40,14 @@ object OpenPgpIntentStarter {
activity.startIntentSenderForResult(
intentSender,
requestCode,
/* fillInIntent = */ null,
/* flagsMask = */ 0,
/* flagsValues = */ 0,
/* extraFlags = */ 0,
/* fillInIntent = */
null,
/* flagsMask = */
0,
/* flagsValues = */
0,
/* extraFlags = */
0,
options,
)
}
Expand All @@ -54,10 +61,14 @@ object OpenPgpIntentStarter {
fragment.startIntentSenderForResult(
intentSender,
requestCode,
/* fillInIntent = */ null,
/* flagsMask = */ 0,
/* flagsValues = */ 0,
/* extraFlags = */ 0,
/* fillInIntent = */
null,
/* flagsMask = */
0,
/* flagsValues = */
0,
/* extraFlags = */
0,
options,
)
}
Expand Down

0 comments on commit 0c73857

Please sign in to comment.