Skip to content

Commit

Permalink
Fix formatting issues with Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
enescakar2148 committed Dec 27, 2024
1 parent 88612e2 commit 844d568
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
}
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,9 @@ object EncryptAuthenticateDialog {
btnOK,
) { text: String ->
if (text.isNotBlank()) {
if (comparingPasswordField.text.toString().isBlank() ||
text == comparingPasswordField.text.toString()) {
if (comparingPasswordField.text.toString().isBlank() ||
text == comparingPasswordField.text.toString()
) {
if (filenameIsValid(encryptSaveAsEditText.text.toString(), useAzeEncrypt)) {
ReturnState()
} else {
Expand Down

0 comments on commit 844d568

Please sign in to comment.