Skip to content

Commit

Permalink
Merge pull request scala#4662 from janekdb/2.11.x-redundant-val-modifier
Browse files Browse the repository at this point in the history
Remove redundant 'val' from case class params.
  • Loading branch information
lrytz committed Jul 28, 2015
2 parents e0d2143 + 173a6fa commit 2279d3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/scala/tools/nsc/typechecker/Macros.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2279d3f

Please sign in to comment.