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.
33
44Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
55
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+
611## [ 1.3.9]
712- Improve source file exclusion logic
813
Original file line number Diff line number Diff line change 1- version =1.3.10
1+ version =1.3.11
22javaVersion =11
Original file line number Diff line number Diff line change @@ -17,10 +17,6 @@ private val possibleMavenRepositoryPaths =
1717 )
1818 .filterNotNull()
1919
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) }
2521
2622internal val gradleHome = createPathOrNull(" GRADLE_USER_HOME" ) ? : userHome.resolve(" .gradle" )
You can’t perform that action at this time.
0 commit comments