Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HosseinYousefi committed Feb 18, 2025
1 parent 7ac5ab1 commit a7fe5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/jnigen/lib/src/bindings/linker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ class _ClassLinker extends Visitor<ClassDecl, void> {
superclass.accept(this);

// Add all methods from the superinterfaces of this class.
final methodSignatures = <String>{};
for (final interface in node.interfaces) {
interface.accept(typeLinker);
final methodSignatures = <String>{};
for (final method in node.methods) {
methodSignatures.add(method.javaSig);
}
Expand Down

0 comments on commit a7fe5f9

Please sign in to comment.