Skip to content

Commit

Permalink
refactor(android): remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
abhaysood committed Aug 1, 2024
1 parent e2c381d commit 791558e
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,20 +251,6 @@ internal object Sql {
"""
}

fun getAttachmentsForEventId(eventId: String): String {
return """
SELECT
${AttachmentTable.COL_ID},
${AttachmentTable.COL_EVENT_ID},
${AttachmentTable.COL_TIMESTAMP},
${AttachmentTable.COL_TYPE},
${AttachmentTable.COL_FILE_PATH},
${AttachmentTable.COL_NAME}
FROM ${AttachmentTable.TABLE_NAME}
WHERE ${AttachmentTable.COL_EVENT_ID} = '$eventId'
"""
}

fun getSessionsWithUntrackedAppExit(): String {
return """
SELECT
Expand Down

0 comments on commit 791558e

Please sign in to comment.