summaryrefslogtreecommitdiff
path: root/project/build/BuildInfoEnvironment.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-01-27 20:24:50 +0000
committerPaul Phillips <paulp@improving.org>2011-01-27 20:24:50 +0000
commit330febc72b402aac2460be2cbc212d5860ed205c (patch)
treed43f7039557f0e6261f49f243e52c69f61eac9f6 /project/build/BuildInfoEnvironment.scala
parent0d29472c7796ce6462e0893d7f401b56cbad1754 (diff)
downloadscala-330febc72b402aac2460be2cbc212d5860ed205c.tar.gz
scala-330febc72b402aac2460be2cbc212d5860ed205c.tar.bz2
scala-330febc72b402aac2460be2cbc212d5860ed205c.zip
Securing some of the blessings of whitespace fo...
Securing some of the blessings of whitespace for the sbt build. No review.
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]("")
}
}