Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CHORE/#180] 미사용 코드 삭제 #181

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@
</intent-filter>
</activity>

<activity
android:name="com.going.presentation.mock.MockActivity"
android:exported="false"
android:screenOrientation="portrait" />

<activity
android:name="com.going.presentation.onboarding.splash.SplashActivity"
android:exported="true"
Expand Down
7 changes: 0 additions & 7 deletions app/src/main/java/com/going/doorip/di/DataSourceModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package com.going.doorip.di
import com.going.data.datasource.AuthDataSource
import com.going.data.datasource.DashBoardDataSource
import com.going.data.datasource.EnterTripDataSource
import com.going.data.datasource.MockDataSource
import com.going.data.datasource.ProfileDataSource
import com.going.data.datasource.SettingDataSource
import com.going.data.datasource.TendencyDataSource
Expand All @@ -12,7 +11,6 @@ import com.going.data.datasource.TokenReissueDataSource
import com.going.data.datasourceImpl.AuthDataSourceImpl
import com.going.data.datasourceImpl.DashBoardDataSourceImpl
import com.going.data.datasourceImpl.EnterTripDataSourceImpl
import com.going.data.datasourceImpl.MockDataSourceImpl
import com.going.data.datasourceImpl.ProfileDataSourceImpl
import com.going.data.datasourceImpl.SettingDataSourceImpl
import com.going.data.datasourceImpl.TendencyDataSourceImpl
Expand All @@ -28,11 +26,6 @@ import javax.inject.Singleton
@InstallIn(SingletonComponent::class)
object DataSourceModule {

@Provides
@Singleton
fun provideMockDataSource(mockDataSourceImpl: MockDataSourceImpl): MockDataSource =
mockDataSourceImpl

@Provides
@Singleton
fun provideAuthDataSource(authDataSourceImpl: AuthDataSourceImpl): AuthDataSource =
Expand Down
7 changes: 0 additions & 7 deletions app/src/main/java/com/going/doorip/di/RepositoryModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package com.going.doorip.di
import com.going.data.repositoryImpl.AuthRepositoryImpl
import com.going.data.repositoryImpl.DashBoardRepositoryImpl
import com.going.data.repositoryImpl.EnterTripRepositoryImpl
import com.going.data.repositoryImpl.MockRepositoryImpl
import com.going.data.repositoryImpl.ProfileRepositoryImpl
import com.going.data.repositoryImpl.SettingRepositoryImpl
import com.going.data.repositoryImpl.TendencyRepositoryImpl
Expand All @@ -13,7 +12,6 @@ import com.going.data.repositoryImpl.TokenRepositoryImpl
import com.going.domain.repository.AuthRepository
import com.going.domain.repository.DashBoardRepository
import com.going.domain.repository.EnterTripRepository
import com.going.domain.repository.MockRepository
import com.going.domain.repository.ProfileRepository
import com.going.domain.repository.SettingRepository
import com.going.domain.repository.TendencyRepository
Expand All @@ -30,11 +28,6 @@ import javax.inject.Singleton
@InstallIn(SingletonComponent::class)
object RepositoryModule {

@Provides
@Singleton
fun provideMockRepository(mockRepositoryImpl: MockRepositoryImpl): MockRepository =
mockRepositoryImpl

@Provides
@Singleton
fun provideAuthRepository(authRepositoryImpl: AuthRepositoryImpl): AuthRepository =
Expand Down
6 changes: 0 additions & 6 deletions app/src/main/java/com/going/doorip/di/ServiceModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package com.going.doorip.di
import com.going.data.service.AuthService
import com.going.data.service.DashBoardService
import com.going.data.service.EnterTripService
import com.going.data.service.MockService
import com.going.data.service.ProfileService
import com.going.data.service.SettingService
import com.going.data.service.TendencyService
Expand All @@ -22,11 +21,6 @@ import javax.inject.Singleton
@InstallIn(SingletonComponent::class)
object ServiceModule {

@Provides
@Singleton
fun provideMockService(@JWT retrofit: Retrofit): MockService =
retrofit.create(MockService::class.java)

@Provides
@Singleton
fun provideAuthService(@JWT retrofit: Retrofit): AuthService =
Expand Down
11 changes: 0 additions & 11 deletions data/src/main/java/com/going/data/datasource/MockDataSource.kt

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

14 changes: 0 additions & 14 deletions data/src/main/java/com/going/data/service/MockService.kt

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.