Skip to content

Commit

Permalink
Fixed static analisys
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-gustavo committed May 21, 2018
1 parent 9c95f52 commit 2f7a816
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ class StoryAdapterRealm: StoryAdapter{
likesIdRealmList.add(like)
}

val storyRealm = StoryRealm(id = id, winnerId = winnerId, winnerSetResult = winnerSetResult, loserId = loserId, loserSetResult = loserSetResult, date = date, commentsId = commentsIdRealmList, likesId = likesIdRealmList)
val storyRealm = StoryRealm(id = id, winnerId = winnerId,
winnerSetResult = winnerSetResult, loserId = loserId,
loserSetResult = loserSetResult, date = date,
commentsId = commentsIdRealmList,
likesId = likesIdRealmList)
return storyRealm
}

Expand Down
1 change: 0 additions & 1 deletion project/app/src/main/java/com/nexte/nexte/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import android.os.Bundle
import android.support.v7.app.AppCompatActivity
import com.nexte.nexte.LoginScene.*
import com.nexte.nexte.ShowProfileScene.ShowProfileView
import com.nexte.nexte.ChallengeScene.ChallengeView
import kotlinx.android.synthetic.main.activity_main.*
import android.support.design.widget.BottomNavigationView
import android.support.v4.app.Fragment
Expand Down

0 comments on commit 2f7a816

Please sign in to comment.