Tests only: fix compiler error because of changed nullability

This commit is contained in:
Nikolay Krasko
2016-06-21 18:12:09 +03:00
committed by Nikolay Krasko
parent 22f3fe4784
commit e2860eb12a
@@ -370,9 +370,10 @@ abstract class AbstractRenameTest : KotlinMultiFileTestCase() {
isSearchInComments: Boolean,
isSearchTextOccurrences: Boolean
) {
if (substitution == null) return
val renameProcessor = RenameProcessor(context.project, substitution, newName, isSearchInComments, isSearchTextOccurrences)
if (renameParamsObject["overloadRenamer.onlyPrimaryElement"]?.asBoolean ?: false) {
with(AutomaticOverloadsRenamer) { substitution?.elementFilter = { false } }
with(AutomaticOverloadsRenamer) { substitution.elementFilter = { false } }
}
Extensions.getExtensions(AutomaticRenamerFactory.EP_NAME).forEach { renameProcessor.addRenamerFactory(it) }
renameProcessor.run()