Skip to content

Commit

Permalink
Remove trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-gibson committed Sep 2, 2024
1 parent d96533a commit ec9df03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import uk.co.ben_gibson.git.link.git.File
import uk.co.ben_gibson.git.link.ui.LineSelection

sealed interface UrlOptions {
class UrlOptionsCommit(val commit: Commit, val currentBranch: String,) : UrlOptions
class UrlOptionsCommit(val commit: Commit, val currentBranch: String) : UrlOptions
class UrlOptionsFileAtCommit(val file: File, val currentBranch: String, val commit: Commit, val lineSelection: LineSelection? = null) : UrlOptions
class UrlOptionsFileAtBranch(val file: File, val branch: String, val lineSelection: LineSelection? = null) : UrlOptions
}

0 comments on commit ec9df03

Please sign in to comment.