Skip to content

Commit

Permalink
Remove LoginModule
Browse files Browse the repository at this point in the history
The module did not have any functions and was merely an introduction of
unnecessary code.
  • Loading branch information
keyboardsurfer committed Mar 6, 2019
1 parent e35c57d commit bcf3268
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,21 @@ package io.plaidapp.designernews.dagger

import dagger.Component
import io.plaidapp.core.dagger.BaseActivityComponent
import io.plaidapp.core.dagger.CoreDataModule
import io.plaidapp.core.dagger.SharedPreferencesModule
import io.plaidapp.core.dagger.designernews.DesignerNewsDataModule
import io.plaidapp.designernews.ui.login.LoginActivity

/**
* Dagger component for [LoginActivity].
*/
@Component(modules = [LoginModule::class])
@Component(
modules = [
CoreDataModule::class,
DesignerNewsDataModule::class,
SharedPreferencesModule::class
]
)
interface LoginComponent : BaseActivityComponent<LoginActivity> {

interface Builder {
Expand Down

This file was deleted.

0 comments on commit bcf3268

Please sign in to comment.