summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Macros.scala
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-07-27 08:51:26 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-07-27 08:51:26 +0100
commit173a6fad95c85a2b6d2c773d273431667d836016 (patch)
tree2dbf88766bd2c6e66985ec0ff5bd617c19536931 /src/compiler/scala/tools/nsc/typechecker/Macros.scala
parentf682441f6f402cc22a747ea93547631af9cb669d (diff)
downloadscala-173a6fad95c85a2b6d2c773d273431667d836016.tar.gz
scala-173a6fad95c85a2b6d2c773d273431667d836016.tar.bz2
scala-173a6fad95c85a2b6d2c773d273431667d836016.zip
Remove redundant 'val' from case class params.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Macros.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Macros.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Macros.scala b/src/compiler/scala/tools/nsc/typechecker/Macros.scala
index 10aefae20b..99dd81c7e2 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Macros.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Macros.scala
@@ -85,9 +85,9 @@ trait Macros extends MacroRuntimes with Traces with Helpers {
*/
case class MacroImplBinding(
// Is this macro impl a bundle (a trait extending *box.Macro) or a vanilla def?
- val isBundle: Boolean,
+ isBundle: Boolean,
// Is this macro impl blackbox (i.e. having blackbox.Context in its signature)?
- val isBlackbox: Boolean,
+ isBlackbox: Boolean,
// Java class name of the class that contains the macro implementation
// is used to load the corresponding object with Java reflection
className: String,