Skip to content

Commit

Permalink
fix(85): Fix issue #89 (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
janbarari authored Jan 28, 2023
1 parent 20aa287 commit ab95b06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ class MySqlDatabaseConnection(block: MySqlDatabaseConnection.() -> Unit): Databa
const val DEFAULT_MYSQL_PORT = 3306
}

init {
apply(block)
}

var host: String? = null

var name: String? = null
Expand All @@ -45,4 +41,7 @@ class MySqlDatabaseConnection(block: MySqlDatabaseConnection.() -> Unit): Databa

var password: String = ""

init {
apply(block)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ import io.github.janbarari.gradle.ExcludeJacocoGenerated
@ExcludeJacocoGenerated
class SqliteDatabaseConnection(block: SqliteDatabaseConnection.() -> Unit): DatabaseConnection() {

init {
apply(block)
}

var path: String? = null

var name: String? = null
Expand All @@ -39,4 +35,7 @@ class SqliteDatabaseConnection(block: SqliteDatabaseConnection.() -> Unit): Data

var password: String = ""

init {
apply(block)
}
}

0 comments on commit ab95b06

Please sign in to comment.