Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b91a35 commit 1a656afCopy full SHA for 1a656af
1 file changed
java/kotlin-extractor/src/main/kotlin/KotlinUsesExtractor.kt
@@ -262,7 +262,7 @@ open class KotlinUsesExtractor(
262
// In order to avoid excessively long signatures which can lead to trap file names longer than the filesystem
263
// limit, we truncate and add a hash to preserve uniqueness if necessary.
264
val signature = if (possiblyLongSignature.length > 100) {
265
- possiblyLongSignature.substring(0, 42) + "#" + StringDigestor.digest(possiblyLongSignature).substring(0, 8)
+ possiblyLongSignature.substring(0, 92) + "#" + StringDigestor.digest(possiblyLongSignature).substring(0, 8)
266
} else { possiblyLongSignature }
267
dependencyCollector?.addDependency(f, signature)
268
externalClassExtractor.extractLater(f, signature)
0 commit comments