summaryrefslogtreecommitdiff
path: root/project/build/BuildInfoEnvironment.scala
diff options
context:
space:
mode:
Diffstat (limited to 'project/build/BuildInfoEnvironment.scala')
-rw-r--r--project/build/BuildInfoEnvironment.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/project/build/BuildInfoEnvironment.scala b/project/build/BuildInfoEnvironment.scala
index 682b8af5da..a7f3d4ba96 100644
--- a/project/build/BuildInfoEnvironment.scala
+++ b/project/build/BuildInfoEnvironment.scala
@@ -1,7 +1,7 @@
import sbt._
-trait BuildInfoEnvironment{
+trait BuildInfoEnvironment {
self : Project =>
- def buildInfoEnvironmentLocation:Path
+ def buildInfoEnvironmentLocation: Path
/**
* Environment for storing properties that
* 1) need to be saved across sbt session
@@ -15,7 +15,7 @@ trait BuildInfoEnvironment{
// the properties file will be read/stored
def envBackingPath = buildInfoEnvironmentLocation
// define some properties
- lazy val lastCompilerVersion:Property[String] = propertyOptional[String]("")
+ lazy val lastCompilerVersion: Property[String] = propertyOptional[String]("")
}
}