Skip to content

Commit

Permalink
refactor: DogTypeRepository 미사용 import문 제거, 생성자 매개변수 콤마로 구분
Browse files Browse the repository at this point in the history
  • Loading branch information
nueijeel committed Jan 8, 2024
1 parent 6c2375e commit fd4964d
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
package com.project.meongcare.onboarding.model.data.repository

import android.content.Context
import android.icu.text.Transliterator
import android.os.Build
import androidx.annotation.RequiresApi
import org.json.JSONArray
import org.json.JSONObject
import java.util.Locale
import javax.inject.Inject

class DogTypeRepository
@Inject
constructor(
private val context: Context
private val context: Context,
) {
private val dogTypes: List<String> by lazy {
loadDogTypes()
Expand Down

0 comments on commit fd4964d

Please sign in to comment.