Skip to content

Commit

Permalink
Fix runtime default property resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Pine committed Feb 16, 2025
1 parent 2314cb0 commit 6e49d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bpf/src/main/java/me/bechberger/ebpf/bpf/BPFProgram.java
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ public void consumeAndThrow() {
if (prop != null && prop.name().equals(name)) {
return prop.defaultValue();
}
queue.addAll(Arrays.asList(clazz.getInterfaces()));
queue.addAll(Arrays.asList(clazz.getSuperclass().getInterfaces()));
}
return null;
}
Expand Down

0 comments on commit 6e49d0c

Please sign in to comment.