Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
meltapplee committed Nov 24, 2024
1 parent b739e7f commit 9ddf503
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/kotlin/org/meogo/domain/review/domain/Review.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Review(
var content: String,

@Column(name = "key_word")
val keyWord: String,
var keyWord: String,

var picture: String?

Expand All @@ -45,6 +45,7 @@ class Review(
): Review {
this.content = content
this.star = star
this.keyWord = keyWord
this.picture = picture
return this
}
Expand Down
1 change: 0 additions & 1 deletion src/main/kotlin/org/meogo/global/utill/FcmUtil.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class FcmUtil {
} catch (e: FirebaseMessagingException) {
throw FcmException
}

}

fun messageSetting(fcmToken: List<String>, title: String, message: String) =
Expand Down

0 comments on commit 9ddf503

Please sign in to comment.