Skip to content

Commit 3fa77e3

Browse files
committed
Remove unused comments
1 parent ee0ce15 commit 3fa77e3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

examples/bs-sqlite-db-example/autorun.brs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ Function SelectRecords(selectSQL as string) as dynamic
118118
records = []
119119
while sqlResult = 102
120120
resultsData = stmt.GetData()
121-
' print resultsData
122121
records.push(resultsData)
123122
sqlResult = stmt.Run()
124123
end while
@@ -138,7 +137,6 @@ Function DeleteRecord(deleteSQL as string) as boolean
138137
deleteStmt = m.db.CreateStatement(deleteSQL)
139138
if type(deleteStmt) = "roSqliteStatement" then
140139
result = deleteStmt.Run()
141-
' print "Deleted record, result: "; result
142140
m.nodejs.PostJSMessage({ action: "delete", command: deleteSQL })
143141
deleteStmt.Finalise()
144142
return true

0 commit comments

Comments
 (0)