summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2006-03-08 10:22:07 +0000
committermihaylov <mihaylov@epfl.ch>2006-03-08 10:22:07 +0000
commitc899305fa7d05bdd0d9a9f15bd3d8f1ed152335d (patch)
tree63c303daf13efccaaeaec4d114c71fdcff45ec05 /src/compiler
parente588e23b94d1f26e6818701e26734b357d37a99a (diff)
downloadscala-c899305fa7d05bdd0d9a9f15bd3d8f1ed152335d.tar.gz
scala-c899305fa7d05bdd0d9a9f15bd3d8f1ed152335d.tar.bz2
scala-c899305fa7d05bdd0d9a9f15bd3d8f1ed152335d.zip
Uncommented the private[scala] access modifier ...
Uncommented the private[scala] access modifier of class ::'s constructor paremeter
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala b/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
index 67251d7bd6..b2268ff239 100644
--- a/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/SyntheticMethods.scala
@@ -104,7 +104,7 @@ mixin class SyntheticMethods requires Analyzer {
newAcc.setFlag(SYNTHETIC).resetFlag(ACCESSOR | PARAMACCESSOR);
newAcc.owner.info.decls enter newAcc;
val result = typed(DefDef(newAcc, vparamss => rhs.duplicate));
- System.out.println("new acc method " + result)
+ log("new accessor method " + result)
result
}