Skip to content

Commit 49df2b2

Browse files
authored
Merge pull request #507 from fwcd/fix-db-typo
Fix typo in `buildFileVersion` column
2 parents 582f605 + 070c35b commit 49df2b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared/src/main/kotlin/org/javacs/kt/classpath/CachedClassPathResolver.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ private const val MAX_PATH_LENGTH = 255
1616

1717
private object ClassPathMetadataCache : IntIdTable() {
1818
val includesSources = bool("includessources")
19-
val buildFileVersion = long("buidlfileversion").nullable()
19+
val buildFileVersion = long("buildfileversion").nullable()
2020
}
2121

2222
private object ClassPathCacheEntry : IntIdTable() {

shared/src/main/kotlin/org/javacs/kt/database/DatabaseService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DatabaseMetadataEntity(id: EntityID<Int>) : IntEntity(id) {
2626
class DatabaseService {
2727

2828
companion object {
29-
const val LATEST_VERSION = 2
29+
const val LATEST_VERSION = 3
3030
const val DB_FILENAME = "kls_database.db"
3131
}
3232

0 commit comments

Comments
 (0)