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 ae7f9a5 commit 039a925
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Please ensure that your pull request meets the following requirements - thanks!
- Does not contain merge commits. Rebase instead.
- Contains commits with descriptive titles.
- New code is written in Kotlin whenever possible.
- Follows our existing codestyle (`gradlew spotlessCheck` to check and `gradlew spotlessFormat` to format your source code; will be checked by CI).
- Follows our existing codestyle (`gradlew spotlessCheck` to check and `gradlew spotlessApply` to format your source code; will be checked by CI).
- Does not break any unit tests (`gradlew testDebugUnitTest`; will be checked by CI).
- Uses a descriptive title; don't put issue numbers in there.
- Contains a reference to the issue that it fixes (e.g. _Closes #XXX_ or _Fixes #XXX_) in the body text.
Expand Down
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 039a925

Please sign in to comment.