Skip to content

Commit

Permalink
refactor/#306 final키워드 삭제
Browse files Browse the repository at this point in the history
- extension 영역은 상속에서 재정의가 불가능한 영역이므로 `final` 키워드는 불필요
  • Loading branch information
JinUng41 committed Aug 19, 2024
1 parent 1cb08d4 commit 04808d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KkuMulKum/Resource/Base/BaseViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class BaseViewController: UIViewController {

extension BaseViewController {
/// 네비게이션 바 타이틀 설정
final func setupNavigationBarTitle(with string: String) {
func setupNavigationBarTitle(with string: String) {
title = string

navigationController?.navigationBar.titleTextAttributes = [
Expand All @@ -60,7 +60,7 @@ extension BaseViewController {
}

/// 네비게이션 바 BackButton 구성
final func setupNavigationBarBackButton() {
func setupNavigationBarBackButton() {
let backButton = UIBarButtonItem(
image: .iconBack,
style: .plain,
Expand Down

0 comments on commit 04808d0

Please sign in to comment.