Skip to content

Commit e10c92f

Browse files
committed
[CHORE] : 바인딩 리소스 해제 위치 변경 #54
1 parent 428e3e3 commit e10c92f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core-ui/src/main/java/com/velogm/core_ui/base/BindingDialogFragment.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ abstract class BindingDialogFragment<T : ViewDataBinding>(
4141
}
4242

4343
override fun onDestroyView() {
44-
super.onDestroyView()
4544
_binding = null
45+
super.onDestroyView()
4646
}
4747
}

core-ui/src/main/java/com/velogm/core_ui/base/BindingFragment.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ abstract class BindingFragment<T : ViewDataBinding>(
2929

3030

3131
override fun onDestroyView() {
32-
super.onDestroyView()
3332
_binding = null
33+
super.onDestroyView()
3434
}
3535
}

0 commit comments

Comments
 (0)