Made not data class

This commit is contained in:
Valentin Kipyatkov
2016-10-21 02:42:02 +03:00
parent 7df3c577f5
commit 129b4b507f
@@ -33,8 +33,7 @@ import org.jetbrains.kotlin.psi.KtExpression
* * All usages of type parameters (of our callable) should be marked with [TYPE_PARAMETER_USAGE_KEY] copyable user data (holds the name of the corresponding type parameter) * * All usages of type parameters (of our callable) should be marked with [TYPE_PARAMETER_USAGE_KEY] copyable user data (holds the name of the corresponding type parameter)
* Use [ReplacementBuilder.buildReplacementExpression]. * Use [ReplacementBuilder.buildReplacementExpression].
*/ */
//TODO: should it be data class? class ReplacementExpression(
data class ReplacementExpression(
val expression: KtExpression, val expression: KtExpression,
val fqNamesToImport: Collection<FqName> val fqNamesToImport: Collection<FqName>
) { ) {