mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2026-01-01 17:28:47 +01:00
fix(connector): made getProjectById internal instead of private
This commit is contained in:
@@ -45,7 +45,7 @@ internal class ProjectDatabase (driverFactory: DriverFactory) {
|
|||||||
* @param id Project id
|
* @param id Project id
|
||||||
* @return [Project]
|
* @return [Project]
|
||||||
*/
|
*/
|
||||||
private fun getProjectById(id: Int): Project {
|
internal fun getProjectById(id: Int): Project {
|
||||||
return dbQuery.selectProjectById(id.toLong()).executeAsOne().toProject()
|
return dbQuery.selectProjectById(id.toLong()).executeAsOne().toProject()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user