Skip to content

Commit a33e3b0

Browse files
committed
Remove needless parameter
1 parent 9c8f7f6 commit a33e3b0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler/src/dotty/tools/dotc/typer/PartialAssignment.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,10 @@ end SimpleLValue
7373
*
7474
* @param function The partially applied function.
7575
* @param arguments The arguments of the partial application.
76-
* @param kind The way in which the function is applied.
7776
*/
7877
private[typer] final case class ApplyLValue(
7978
function: tpd.Tree,
80-
arguments: List[tpd.Tree],
81-
kind: ApplyKind = ApplyKind.Regular
79+
arguments: List[tpd.Tree]
8280
) extends LValue:
8381

8482
val locals: List[tpd.ValDef] =

0 commit comments

Comments
 (0)