File tree 2 files changed +5
-2
lines changed
compiler/src/dotty/tools/dotc/config
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ lazy val compilerVersion: String =
11
11
new String (Files .readAllBytes(file), UTF_8 )
12
12
13
13
lazy val compilerSupportExperimental : Boolean =
14
- compilerVersion.contains(" SNAPSHOT" ) || compilerVersion.contains(" NIGHTLY" )
14
+ false
15
+ // compilerVersion.contains("SNAPSHOT") || compilerVersion.contains("NIGHTLY")
15
16
16
17
lazy val sbtPluginFilePath : String =
17
18
// Workaround for https://github.com/sbt/sbt/issues/4395
Original file line number Diff line number Diff line change @@ -88,7 +88,9 @@ trait PropertiesTrait {
88
88
* 2. Features supported by experimental versions of the compiler:
89
89
* - research plugins
90
90
*/
91
- val experimental : Boolean = versionString.contains(" SNAPSHOT" ) || versionString.contains(" NIGHTLY" )
91
+ val experimental : Boolean =
92
+ false
93
+ // versionString.contains("SNAPSHOT") || versionString.contains("NIGHTLY")
92
94
93
95
val copyrightString : String = scalaPropOrElse(" copyright.string" , " (c) 2002-2017 LAMP/EPFL" )
94
96
You can’t perform that action at this time.
0 commit comments