diff --git a/idea/testData/refactoring/move/kotlin/moveTopLevelDeclarations/movePrivateClassWithUsagesInBothAccessors/after/test.kt b/idea/testData/refactoring/move/kotlin/moveTopLevelDeclarations/movePrivateClassWithUsagesInBothAccessors/after/test.kt index 2b96f636608..5fc2b2a605d 100644 --- a/idea/testData/refactoring/move/kotlin/moveTopLevelDeclarations/movePrivateClassWithUsagesInBothAccessors/after/test.kt +++ b/idea/testData/refactoring/move/kotlin/moveTopLevelDeclarations/movePrivateClassWithUsagesInBothAccessors/after/test.kt @@ -1,7 +1,5 @@ package test var tempY: Int = 0 - get() { - TempY(); return field } - set(p: Int) { - TempY(); field = p } \ No newline at end of file + get() { TempY(); return field } + set(p: Int) { TempY(); field = p } \ No newline at end of file