Skip to content
This repository was archived by the owner on Sep 1, 2020. It is now read-only.

Commit 2279d3f

Browse files
committed
Merge pull request scala#4662 from janekdb/2.11.x-redundant-val-modifier
Remove redundant 'val' from case class params.
2 parents e0d2143 + 173a6fa commit 2279d3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/scala/tools/nsc/typechecker/Macros.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ trait Macros extends MacroRuntimes with Traces with Helpers {
8585
*/
8686
case class MacroImplBinding(
8787
// Is this macro impl a bundle (a trait extending *box.Macro) or a vanilla def?
88-
val isBundle: Boolean,
88+
isBundle: Boolean,
8989
// Is this macro impl blackbox (i.e. having blackbox.Context in its signature)?
90-
val isBlackbox: Boolean,
90+
isBlackbox: Boolean,
9191
// Java class name of the class that contains the macro implementation
9292
// is used to load the corresponding object with Java reflection
9393
className: String,

0 commit comments

Comments
 (0)