Skip to content

Commit

Permalink
fix unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
saleniuk committed Dec 18, 2024
1 parent 66bfed1 commit 1ea1358
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ class UserDAOImpl internal constructor(

// returns true if any row has been inserted or modified, false if exactly the same data already exists
private fun markUserAsDeleted(qualifiedID: QualifiedIDEntity, userType: UserTypeEntity): Boolean {
userQueries.markUserAsDeleted(qualifiedID, UserTypeEntity.NONE)
userQueries.markUserAsDeleted(qualifiedID, userType)
return userQueries.selectChanges().executeAsOne() > 0
}

Expand Down

0 comments on commit 1ea1358

Please sign in to comment.