Skip to content

Commit 94d01e4

Browse files
committed
Fix wrong package name
1 parent 2c44689 commit 94d01e4

File tree

15 files changed

+20
-20
lines changed

15 files changed

+20
-20
lines changed

app/src/test/kotlin/com/skydoves/pokedex/DetailViewModelTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package com.skydoves.pokedex
1818

1919
import app.cash.turbine.test
2020
import com.skydoves.pokedex.core.database.PokemonInfoDao
21-
import com.skydoves.pokedex.core.database.entitiy.mapper.asEntity
21+
import com.skydoves.pokedex.core.database.entity.mapper.asEntity
2222
import com.skydoves.pokedex.core.network.service.PokedexClient
2323
import com.skydoves.pokedex.core.network.service.PokedexService
2424
import com.skydoves.pokedex.core.repository.DetailRepository

app/src/test/kotlin/com/skydoves/pokedex/MainViewModelTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package com.skydoves.pokedex
1818

1919
import app.cash.turbine.test
2020
import com.skydoves.pokedex.core.database.PokemonDao
21-
import com.skydoves.pokedex.core.database.entitiy.mapper.asEntity
21+
import com.skydoves.pokedex.core.database.entity.mapper.asEntity
2222
import com.skydoves.pokedex.core.network.service.PokedexClient
2323
import com.skydoves.pokedex.core.network.service.PokedexService
2424
import com.skydoves.pokedex.core.repository.MainRepository

core-data/src/main/kotlin/com/skydoves/pokedex/core/repository/DetailRepositoryImpl.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package com.skydoves.pokedex.core.repository
1919
import androidx.annotation.VisibleForTesting
2020
import androidx.annotation.WorkerThread
2121
import com.skydoves.pokedex.core.database.PokemonInfoDao
22-
import com.skydoves.pokedex.core.database.entitiy.mapper.asDomain
23-
import com.skydoves.pokedex.core.database.entitiy.mapper.asEntity
22+
import com.skydoves.pokedex.core.database.entity.mapper.asDomain
23+
import com.skydoves.pokedex.core.database.entity.mapper.asEntity
2424
import com.skydoves.pokedex.core.model.PokemonInfo
2525
import com.skydoves.pokedex.core.network.Dispatcher
2626
import com.skydoves.pokedex.core.network.PokedexAppDispatchers

core-data/src/main/kotlin/com/skydoves/pokedex/core/repository/MainRepositoryImpl.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package com.skydoves.pokedex.core.repository
1919
import androidx.annotation.VisibleForTesting
2020
import androidx.annotation.WorkerThread
2121
import com.skydoves.pokedex.core.database.PokemonDao
22-
import com.skydoves.pokedex.core.database.entitiy.mapper.asDomain
23-
import com.skydoves.pokedex.core.database.entitiy.mapper.asEntity
22+
import com.skydoves.pokedex.core.database.entity.mapper.asDomain
23+
import com.skydoves.pokedex.core.database.entity.mapper.asEntity
2424
import com.skydoves.pokedex.core.model.Pokemon
2525
import com.skydoves.pokedex.core.network.Dispatcher
2626
import com.skydoves.pokedex.core.network.PokedexAppDispatchers

core-data/src/test/kotlin/com/skydoves/pokedex/core/data/DetailRepositoryTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package com.skydoves.pokedex.core.data
1818

1919
import app.cash.turbine.test
2020
import com.skydoves.pokedex.core.database.PokemonInfoDao
21-
import com.skydoves.pokedex.core.database.entitiy.mapper.asEntity
21+
import com.skydoves.pokedex.core.database.entity.mapper.asEntity
2222
import com.skydoves.pokedex.core.network.service.PokedexClient
2323
import com.skydoves.pokedex.core.network.service.PokedexService
2424
import com.skydoves.pokedex.core.repository.DetailRepositoryImpl

core-data/src/test/kotlin/com/skydoves/pokedex/core/data/MainRepositoryImplTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package com.skydoves.pokedex.core.data
1818

1919
import app.cash.turbine.test
2020
import com.skydoves.pokedex.core.database.PokemonDao
21-
import com.skydoves.pokedex.core.database.entitiy.mapper.asEntity
21+
import com.skydoves.pokedex.core.database.entity.mapper.asEntity
2222
import com.skydoves.pokedex.core.network.model.PokemonResponse
2323
import com.skydoves.pokedex.core.network.service.PokedexClient
2424
import com.skydoves.pokedex.core.network.service.PokedexService

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/PokedexDatabase.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package com.skydoves.pokedex.core.database
1919
import androidx.room.Database
2020
import androidx.room.RoomDatabase
2121
import androidx.room.TypeConverters
22-
import com.skydoves.pokedex.core.database.entitiy.PokemonEntity
23-
import com.skydoves.pokedex.core.database.entitiy.PokemonInfoEntity
22+
import com.skydoves.pokedex.core.database.entity.PokemonEntity
23+
import com.skydoves.pokedex.core.database.entity.PokemonInfoEntity
2424

2525
@Database(
2626
entities = [PokemonEntity::class, PokemonInfoEntity::class],

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/PokemonDao.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import androidx.room.Dao
2020
import androidx.room.Insert
2121
import androidx.room.OnConflictStrategy
2222
import androidx.room.Query
23-
import com.skydoves.pokedex.core.database.entitiy.PokemonEntity
23+
import com.skydoves.pokedex.core.database.entity.PokemonEntity
2424

2525
@Dao
2626
interface PokemonDao {

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/PokemonInfoDao.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import androidx.room.Dao
2020
import androidx.room.Insert
2121
import androidx.room.OnConflictStrategy
2222
import androidx.room.Query
23-
import com.skydoves.pokedex.core.database.entitiy.PokemonInfoEntity
23+
import com.skydoves.pokedex.core.database.entity.PokemonInfoEntity
2424

2525
@Dao
2626
interface PokemonInfoDao {

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entitiy/PokemonEntity.kt core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entity/PokemonEntity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.skydoves.pokedex.core.database.entitiy
17+
package com.skydoves.pokedex.core.database.entity
1818

1919
import androidx.room.Entity
2020
import androidx.room.PrimaryKey

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entitiy/PokemonInfoEntity.kt core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entity/PokemonInfoEntity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.skydoves.pokedex.core.database.entitiy
17+
package com.skydoves.pokedex.core.database.entity
1818

1919
import androidx.room.Entity
2020
import androidx.room.PrimaryKey

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entitiy/mapper/EntityMapper.kt core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entity/mapper/EntityMapper.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.skydoves.pokedex.core.database.entitiy.mapper
17+
package com.skydoves.pokedex.core.database.entity.mapper
1818

1919
interface EntityMapper<Domain, Entity> {
2020

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entitiy/mapper/PokemonEntityMapper.kt core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entity/mapper/PokemonEntityMapper.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.skydoves.pokedex.core.database.entitiy.mapper
17+
package com.skydoves.pokedex.core.database.entity.mapper
1818

19-
import com.skydoves.pokedex.core.database.entitiy.PokemonEntity
19+
import com.skydoves.pokedex.core.database.entity.PokemonEntity
2020
import com.skydoves.pokedex.core.model.Pokemon
2121

2222
object PokemonEntityMapper : EntityMapper<List<Pokemon>, List<PokemonEntity>> {

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entitiy/mapper/PokemonInfoEntityMapper.kt core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entity/mapper/PokemonInfoEntityMapper.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.skydoves.pokedex.core.database.entitiy.mapper
17+
package com.skydoves.pokedex.core.database.entity.mapper
1818

19-
import com.skydoves.pokedex.core.database.entitiy.PokemonInfoEntity
19+
import com.skydoves.pokedex.core.database.entity.PokemonInfoEntity
2020
import com.skydoves.pokedex.core.model.PokemonInfo
2121

2222
object PokemonInfoEntityMapper : EntityMapper<PokemonInfo, PokemonInfoEntity> {

core-database/src/test/kotlin/com/skydoves/pokedex/core/database/PokemonDaoTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
package com.skydoves.pokedex.core.database
1818

19-
import com.skydoves.pokedex.core.database.entitiy.mapper.asEntity
19+
import com.skydoves.pokedex.core.database.entity.mapper.asEntity
2020
import com.skydoves.pokedex.core.test.MockUtil.mockPokemon
2121
import com.skydoves.pokedex.core.test.MockUtil.mockPokemonList
2222
import kotlinx.coroutines.runBlocking

0 commit comments

Comments
 (0)