mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-11-30 01:39:38 +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
|
||||
* @return [Project]
|
||||
*/
|
||||
private fun getProjectById(id: Int): Project {
|
||||
internal fun getProjectById(id: Int): Project {
|
||||
return dbQuery.selectProjectById(id.toLong()).executeAsOne().toProject()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user