Skip to content

Commit

Permalink
CHORE : 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
minseonglove committed Feb 15, 2023
1 parent a0c87cb commit 8b0280d
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ abstract class BaseFragment<VB : ViewDataBinding>(
initCollector()
}

protected open fun initListener() {
// 호출을 BaseFragment로 위임하기 위한 빈 메소드 입니다.
}

protected open fun initCollector() {
// 호출을 BaseFragment로 위임하기 위한 빈 메소드 입니다.
}

protected fun sendSnackBar(
message: String,
@IntRange(from = -2) length: Int = Snackbar.LENGTH_SHORT,
Expand All @@ -58,10 +66,6 @@ abstract class BaseFragment<VB : ViewDataBinding>(
requireActivity().finish()
}

protected open fun initListener() {}

protected open fun initCollector() {}

override fun onDestroyView() {
super.onDestroyView()
_binding = null
Expand Down

0 comments on commit 8b0280d

Please sign in to comment.