Skip to content

Commit

Permalink
Fix more code to align with standards
Browse files Browse the repository at this point in the history
  • Loading branch information
MrME-CodeSmith committed Oct 16, 2023
1 parent ec3cb90 commit 2b65d01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ class AIUserDataService(private val userRepository: UserRepository, private val
if (timeSlotDuration / eventDuration >= 2) {
var timeSlotOffset = 0L
while (timeSlot.startTime.plusSeconds(timeSlotOffset)
.isBefore(timeSlot.endTime)
.isBefore(timeSlot.endTime)
) {
tempTimeSlots.add(
TimeSlot(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,9 +594,9 @@ class UserCalendarService(
if (recommendations != null) {
toReturn = recommendations.mapValues { entry ->
entry.value.l().map {
value ->
value ->
value.m()["week_days"]?.m()?.mapValues {
attr ->
attr ->
attr.value.l().map {
it.s() ?: ""
}
Expand Down

0 comments on commit 2b65d01

Please sign in to comment.