Skip to content

Commit

Permalink
[Refator] #223 - static dispatch를 위한 final 키워드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yungu0010 committed Jan 18, 2024
1 parent 45401f6 commit dfce99f
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import UIKit

import Amplitude

class AmplitudeAnalyticsService: AnalyticsServiceProtocol {
final class AmplitudeAnalyticsService: AnalyticsServiceProtocol {
static let shared: AmplitudeAnalyticsService = AmplitudeAnalyticsService()

init() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import UIKit

class DetailAchievementCollectionViewCell: UICollectionViewCell {
final class DetailAchievementCollectionViewCell: UICollectionViewCell {

// MARK: - Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import Then
import SnapKit

class StatisticsView: UIView {
final class StatisticsView: UIView {

// MARK: - UI Components

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import KakaoSDKCommon
import KakaoSDKAuth
import KakaoSDKUser

class AuthViewController: UIViewController {
final class AuthViewController: UIViewController {

// MARK: - UI Components

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import Then
import SnapKit

class DetailStackView: UIView {
final class DetailStackView: UIView {

let verticalStackView = UIStackView()
let tagLabel = UILabel()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import SnapKit
import Then

class OnboardingCollectionViewCell: UICollectionViewCell {
final class OnboardingCollectionViewCell: UICollectionViewCell {

// MARK: - Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import SnapKit
import Then

class SubOnboardingCollectionViewCell: UICollectionViewCell {
final class SubOnboardingCollectionViewCell: UICollectionViewCell {

// MARK: - Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import UIKit
import AVFoundation

class LogoOnboardingViewController: UIViewController {
final class LogoOnboardingViewController: UIViewController {

// MARK: - Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import UIKit

import Lottie

class ValueOnboardingViewController: UIViewController {
final class ValueOnboardingViewController: UIViewController {

// MARK: - Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import SnapKit
import Then

class RecommendCollectionViewCell: UICollectionViewCell {
final class RecommendCollectionViewCell: UICollectionViewCell {

// MARK: - Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import UIKit

class RecommendViewController: UIViewController {
final class RecommendViewController: UIViewController {

// MARK: - Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import SnapKit
import Then

class RecommendActionCollectionViewCell: UICollectionViewCell {
final class RecommendActionCollectionViewCell: UICollectionViewCell {

// MARK: - Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import SnapKit
import Then

class RecommendActionFooterView: UICollectionReusableView {
final class RecommendActionFooterView: UICollectionReusableView {

// MARK: - Identifier

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import SnapKit
import Then

class RecommendActionHeaderView: UICollectionReusableView {
final class RecommendActionHeaderView: UICollectionReusableView {

// MARK: - Identifier

Expand Down

0 comments on commit dfce99f

Please sign in to comment.