Skip to content

Commit

Permalink
don't remove empty params
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Oct 24, 2024
1 parent ae1962d commit ec6ce15
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 6 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
[versions]
asm = "9.7"
asm = "9.7.1"
okio = "3.7.0"
kotlin = "2.0.20"

commons = "1.0.0"

jb_annotations = "24.1.0"

apache_commons_compress = "1.26.2"

kotlin_serialization = "1.6.2"
kotlin_coroutines = "1.9.0-RC"
kotlin_logging = "6.0.1"

clikt = "4.3.0"
slf4j = "2.0.13"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ class MethodNode(parent: ClassNode) : FieldMethodResolvable<MethodNode, MethodVi
exception.accept(visitor, nsFilter)
}
for (param in params.resolve()) {
if (param.names.isEmpty()) continue
param.accept(visitor, nsFilter)
}
for (local in locals) {
Expand Down

0 comments on commit ec6ce15

Please sign in to comment.