Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kunli2 committed Oct 10, 2023
1 parent a4f6cf3 commit e4b8b9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1253,11 +1253,11 @@ public J visitCallExpression(KtCallExpression expression, ExecutionContext data)
JavaType.Method methodType = methodInvocationType(expression);
return new J.MethodInvocation(
randomId(),
Space.EMPTY,
prefix(expression),
Markers.EMPTY,
null,
null,
name.withType(methodType).withPrefix( prefix(expression)),
name.withType(methodType), // .withPrefix( prefix(expression)),
args,
methodType
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ void mapOf() {
rewriteRun(
kotlin(
"""
val map = mapOf ( 1 to "one" , 2 to "two" , 3 to "three" )
val map = mapOf ( 1 to "one" , 2 to "two" , 3 to "three" )
"""
)
);
Expand Down

0 comments on commit e4b8b9b

Please sign in to comment.