Skip to content

Commit 7cc38c2

Browse files
committed
GitLineHandlerFactory: fix formatting
1 parent d2e4d44 commit 7cc38c2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/kotlin/com/github/monosoul/git/updateindex/extended/GitLineHandlerFactory.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ class GitLineHandlerFactory(private val project: Project) {
1313

1414
private val logger by Slf4j
1515

16-
operator fun invoke(command: ExtendedUpdateIndexCommand, vcsRoot: VirtualFile, files: List<VirtualFile>): GitLineHandler {
16+
operator fun invoke(
17+
command: ExtendedUpdateIndexCommand,
18+
vcsRoot: VirtualFile,
19+
files: List<VirtualFile>
20+
): GitLineHandler {
1721
logger.debug("Building git line handler. Command={}; VCS Root={}, Files={}", command, vcsRoot, files)
1822

1923
return GitLineHandler(project, vcsRoot, UPDATE_INDEX).apply {

0 commit comments

Comments
 (0)