Skip to content

Commit 81ad6bf

Browse files
committed
Cleanup
1 parent b398496 commit 81ad6bf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/main/kotlin/ServerDatabase.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,15 @@ import system.EnvironmentVariables
2323
*/
2424
class ServerDatabase private constructor() {
2525
companion object {
26-
/** The URL of the target database. Defaults to an in-memory H2 database. **Doesn't work in production.** */
26+
/**
27+
* The URL of the target database. Defaults to an in-memory H2 database.
28+
* **Doesn't work in production.**
29+
*/
2730
var url: String = "jdbc:h2:mem:regular;DB_CLOSE_DELAY=-1;"
2831

2932
/**
30-
* The driver to use for performing connections with the database. Defaults to H2. **Doesn't work in production.**
33+
* The driver to use for performing connections with the database. Defaults to H2.
34+
* **Doesn't work in production.**
3135
*/
3236
var driver: String = "org.h2.Driver"
3337

0 commit comments

Comments
 (0)