Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Minor fixes suggested by linters #4

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add annotations for unused fields in VarnodeConverter
The `constVar` is not used yet, but it may be used in the future. This
commit just adds an annotation to suppress warnings.

Signed-off-by: Akira Moroo <retrage01@gmail.com>
  • Loading branch information
retrage committed May 3, 2022
commit 98b388eff36b84ed3af7aff78766dce375227c09
1 change: 1 addition & 0 deletions src/main/java/efiSeek/VarnodeConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
public class VarnodeConverter {
private Address addr = null;
private Variable finalVar = null;
@SuppressWarnings("unused")
private Long constVar = null;
private ArrayList<Long> offset = new ArrayList<Long>();
private Boolean deref = false;
Expand Down