data class CommitDiff: Any
Fields
Name | Description |
---|---|
val fileName: String
|
|
val additions: Int
|
is an Int representing the lines that were added between the commits |
val replacements: Int
|
is an Int representing the lines that were changed between the commits |
val deletetions: Int
|
Constructors
<init>
constructor(fileName: String, additions: Int, replacements: Int, deletetions: Int)
Represents the differences between two different commits.
Parameters
Name | Description |
---|---|
fileName: String
|
|
additions: Int
|
|
replacements: Int
|
|
deletetions: Int
|
Represents the differences between two different commits.