Skip to content

Commit

Permalink
[chore] #30 코드 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobeen-Park committed May 23, 2024
1 parent 2f4cf7b commit 95d1986
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package org.sopt.kream.data.datasourceimpl

import org.sopt.kream.data.ServicePool
import org.sopt.kream.data.datasource.ProductRemoteDataSource
import org.sopt.kream.data.model.response.ResponseProductDetailDto
import org.sopt.kream.data.model.request.RequestPostScrapDto
import org.sopt.kream.data.model.response.ResponseProductDetailDto
import org.sopt.kream.data.model.response.ResponseRecommendProductDto
import org.sopt.kream.data.model.response.ResponseSearchProductDto
import org.sopt.kream.util.base.BaseResponse
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
package org.sopt.kream.data.service

import org.sopt.kream.data.model.response.ResponseProductDetailDto
import org.sopt.kream.data.model.response.ResponseReleaseProductDto
import org.sopt.kream.data.model.request.RequestPostScrapDto
import org.sopt.kream.data.model.response.ResponseProductDetailDto
import org.sopt.kream.data.model.response.ResponseRecommendProductDto
import org.sopt.kream.data.model.response.ResponseReleaseProductDto
import org.sopt.kream.data.model.response.ResponseSearchProductDto
import org.sopt.kream.util.base.BaseResponse
import retrofit2.http.DELETE
import retrofit2.http.Body
import retrofit2.http.DELETE
import retrofit2.http.GET
import retrofit2.http.Header
import retrofit2.http.Path
import retrofit2.http.Header
import retrofit2.http.POST
import retrofit2.http.Path
import retrofit2.http.Query

interface ProductService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import org.sopt.kream.data.datasourceimpl.ProductRemoteDataSourceImpl
import org.sopt.kream.data.repository.DummyRepositoryImpl
import org.sopt.kream.data.repository.ProductRepositoryImpl
import org.sopt.kream.presentation.ui.dummy.DummyViewModel
import org.sopt.kream.presentation.ui.productdetail.ProductDetailViewModel
import org.sopt.kream.presentation.ui.main.home.recommend.RecommendViewModel
import org.sopt.kream.presentation.ui.productdetail.ProductDetailViewModel
import org.sopt.kream.presentation.ui.search.SearchViewModel

class ViewModelFactory : ViewModelProvider.Factory {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_recommend.xml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:padding="14dp"
android:text="@string/recommend_more"
android:text="@string/all_details"
android:textAppearance="@style/TextAppearance.Kream.Body5.Regular"
android:textColor="@color/black06"
app:layout_constraintBottom_toBottomOf="@id/tv_recommend_just_dropped_content"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/item_recommend_for_you.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="7dp"
android:text="@string/recommend_more"
android:text="@string/all_details"
android:textAlignment="center"
android:textAppearance="@style/TextAppearance.Kream.Body5.Regular"
android:textColor="@color/gray02"
Expand Down

0 comments on commit 95d1986

Please sign in to comment.