Skip to content

Commit

Permalink
refactor: reduce maximum recent elements to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
lppedd committed Jul 10, 2022
1 parent 214ae95 commit a6fcdae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import kotlin.text.RegexOption.MULTILINE
@Internal
internal class InternalRecentCommitsService(private val project: Project) : RecentCommitsService {
private companion object {
private const val MAX_ELEMENTS = 5
private const val MAX_ELEMENTS = 4

/**
* Regexp to match beginning and ending whitespace characters,
Expand Down

0 comments on commit a6fcdae

Please sign in to comment.