Skip to content

Commit 6ae59c9

Browse files
committed
fix: Apply small fixes across the codebase
1 parent c519635 commit 6ae59c9

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ seqraOrg=seqra
22

33
seqraBuildVersion=2025.10.01.6b66511
44

5-
seqraIrVersion=2025.10.09.8af579a
6-
seqraConfigVersion=2025.11.08.5fe2c2b
7-
seqraUtilVersion=2025.10.28.b93c206
5+
seqraIrVersion=2025.11.27.cbc858a
6+
seqraConfigVersion=2025.11.27.f3b2677
7+
seqraUtilVersion=2025.11.27.8076afc

seqra-jvm-dataflow/src/main/kotlin/org/seqra/dataflow/jvm/ap/ifds/LambdaAnonymousClassFeature.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ class LambdaAnonymousClassFeature : JIRClasspathExtFeature {
335335
}
336336
}
337337

338-
private class JIRLambdaMethod(
338+
class JIRLambdaMethod(
339339
name: String,
340340
returnType: TypeName,
341341
description: String,

seqra-jvm-dataflow/src/main/kotlin/org/seqra/dataflow/jvm/util/JIRSarifTraits.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,12 @@ class JIRSarifTraits(
8282
}
8383

8484
override fun printArgumentNth(index: Int, methodName: String?): String {
85-
val ofMethod = methodName?.let { " of \"$it\"" } ?: ""
85+
val ofMethod = methodName?.let {
86+
if (it.startsWith("lambda$"))
87+
" of lambda"
88+
else
89+
" of \"$it\""
90+
} ?: ""
8691
return "the ${getOrdinal(index + 1)} argument$ofMethod"
8792
}
8893

0 commit comments

Comments
 (0)