From 2f015b4c7ab52d8ba2c711c12dbe91483ec95c97 Mon Sep 17 00:00:00 2001 From: Dmitry Gridin Date: Wed, 29 Apr 2020 13:05:36 +0700 Subject: [PATCH] Fix `testKotlin_moveTopLevelDeclarations_movePrivatePropertyWithDefaultAccessors_MovePrivatePropertyWithDefaultAccessors` test --- .../movePrivateClassWithUsagesInBothAccessors/after/test.kt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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