-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 1.0.79 * Update AddSaveLinks.kt * 1. `generateDiff` function: - The function has been rewritten to use a more efficient algorithm. - Instead of using mutable lists and removing elements, it now uses indices to iterate through the original and modified lines. - The new implementation should be more memory-efficient and potentially faster. 2. `generateUnifiedDiff` function: - Minor changes to improve the handling of context lines around changes. - Adjustments to prevent potential index out of bounds errors. - More precise filtering of unchanged lines when adding context. Overall, these changes aim to improve the performance and correctness of the diff generation process. The new implementation of `generateDiff` should be able to handle larger files more efficiently, while the changes to `generateUnifiedDiff` make it more robust and accurate in generating the unified diff format.
- Loading branch information
1 parent
6753774
commit 332c1a7
Showing
8 changed files
with
81 additions
and
850 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Gradle Releases -> https://github.com/gradle/gradle/releases | ||
libraryGroup = com.simiacryptus.skyenet | ||
libraryVersion = 1.0.78 | ||
libraryVersion = 1.0.79 | ||
gradleVersion = 7.6.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.