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)
* Use [ReplacementBuilder.buildReplacementExpression].
*/
//TODO: should it be data class?
data class ReplacementExpression(
class ReplacementExpression(
val expression: KtExpression,
val fqNamesToImport: Collection<FqName>
) {