summaryrefslogtreecommitdiff
path: root/src/detach/plugin
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2010-11-18 17:46:38 +0000
committermichelou <michelou@epfl.ch>2010-11-18 17:46:38 +0000
commitc5c02cf4ff257bfb23386048ef9b3129eab2baf2 (patch)
tree4d1c08aa60c9d7f603e9d006f1bd851253bf6f00 /src/detach/plugin
parent13a20ba71ae1805c7361e95d66360bd0a9a7f3d8 (diff)
downloadscala-c5c02cf4ff257bfb23386048ef9b3129eab2baf2.tar.gz
scala-c5c02cf4ff257bfb23386048ef9b3129eab2baf2.tar.bz2
scala-c5c02cf4ff257bfb23386048ef9b3129eab2baf2.zip
removed duplicated error message for bad compil...
removed duplicated error message for bad compiler options made some cleanups in detach plugin code
Diffstat (limited to 'src/detach/plugin')
-rw-r--r--src/detach/plugin/scala/tools/detach/Detach.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/detach/plugin/scala/tools/detach/Detach.scala b/src/detach/plugin/scala/tools/detach/Detach.scala
index f0b0a2a18d..f3116d033c 100644
--- a/src/detach/plugin/scala/tools/detach/Detach.scala
+++ b/src/detach/plugin/scala/tools/detach/Detach.scala
@@ -25,7 +25,7 @@ abstract class Detach extends PluginComponent
new DetachTransformer(unit)
// set with the `-P:detach:enable` plugin option (see DetachPlugin) */
- var isEnabled = false
+ protected[detach] var isEnabled = false
private class DetachTransformer(unit: CompilationUnit)
extends TypingTransformer(unit) {