File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
shared/src/main/kotlin/org/javacs/kt/classpath Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ All notable changes to the language server will be documented in this file.
3
3
4
4
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
5
5
6
+ ## [ 1.3.10]
7
+ - Update LSP4J to 0.21.2
8
+ - Increase maximum length in class path cache (#532 )
9
+ - Fix some bugs
10
+
6
11
## [ 1.3.9]
7
12
- Improve source file exclusion logic
8
13
Original file line number Diff line number Diff line change 1
- version =1.3.10
1
+ version =1.3.11
2
2
javaVersion =11
Original file line number Diff line number Diff line change @@ -17,10 +17,6 @@ private val possibleMavenRepositoryPaths =
17
17
)
18
18
.filterNotNull()
19
19
20
- internal val mavenRepository =
21
- possibleMavenRepositoryPaths.firstOrNull { Files .exists(it) }
22
- ? : throw KotlinLSException (
23
- " No repositories found at \$ MAVEN_REPOSITORY, \$ MAVEN_HOME, \$ M2_HOME or \$ HOME/.m2"
24
- )
20
+ internal val mavenRepository = possibleMavenRepositoryPaths.firstOrNull { Files .exists(it) }
25
21
26
22
internal val gradleHome = createPathOrNull(" GRADLE_USER_HOME" ) ? : userHome.resolve(" .gradle" )
You can’t perform that action at this time.
0 commit comments