Skip to content

Commit

Permalink
add fix for deprecated method usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnovais committed Oct 16, 2024
1 parent f27f807 commit 3aadad6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class ProofToFinalizeJsonResponseTest {
val jsonParser = jsonNode.traverse()
while (!jsonParser.isClosed) {
if (jsonParser.nextToken() == JsonToken.FIELD_NAME) {
keys.add(jsonParser.currentName)
keys.add(jsonParser.currentName())
}
}
return keys
Expand Down

0 comments on commit 3aadad6

Please sign in to comment.