File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
src/main/kotlin/com/github/xepozz/git_churn Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,5 @@ data class GitChurnDescriptor(
1212}
1313
1414data class FileNodeDescriptor (
15- val path : VirtualFile ,
1615 val changeCount : Int ,
1716)
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ object OutputParser {
2525 if (virtualFile != null && virtualFile.exists()) {
2626 result.maxCount = maxOf(result.maxCount, count)
2727 result.filesInfo[virtualFile] = FileNodeDescriptor (
28- path = virtualFile,
2928 changeCount = count,
3029 )
3130 }
@@ -74,7 +73,6 @@ object OutputParser {
7473 val changeCount = findMaxChangeCountForDirectory(directory, filesInfo)
7574 maxCount = maxOf(maxCount, changeCount)
7675 filesInfo[directory] = FileNodeDescriptor (
77- path = directory,
7876 changeCount = changeCount,
7977 )
8078 }
You can’t perform that action at this time.
0 commit comments