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