summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2007-06-14 21:44:44 +0000
committerLex Spoon <lex@lexspoon.org>2007-06-14 21:44:44 +0000
commit9128040ab12ea8c187fbcf471e703fcc81f0dc28 (patch)
tree61dbea10f820cbf854ff8c59d2795e575c90de49 /src/compiler/scala/tools/nsc
parente0f606ac4c88605b7a35d962b6376ecc1119be8f (diff)
downloadscala-9128040ab12ea8c187fbcf471e703fcc81f0dc28.tar.gz
scala-9128040ab12ea8c187fbcf471e703fcc81f0dc28.tar.bz2
scala-9128040ab12ea8c187fbcf471e703fcc81f0dc28.zip
expose the isWin value
Diffstat (limited to 'src/compiler/scala/tools/nsc')
-rw-r--r--src/compiler/scala/tools/nsc/Properties.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Properties.scala b/src/compiler/scala/tools/nsc/Properties.scala
index 7d89b3ceb9..2ec544b7e0 100644
--- a/src/compiler/scala/tools/nsc/Properties.scala
+++ b/src/compiler/scala/tools/nsc/Properties.scala
@@ -24,7 +24,7 @@ object Properties {
props
}
- private val isWin = System.getProperty("os.name") startsWith "Windows"
+ val isWin = System.getProperty("os.name") startsWith "Windows"
/** The version number of the jar this was loaded from, or
* "(unknown)" if it cannot be determined.