Skip to content

Commit

Permalink
fixed another checkstyle warning
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser58 committed Aug 15, 2024
1 parent 583869f commit 12e52bf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ public TCGEventLog(final byte[] rawlog, final boolean bEventFlag,
// [new event file status = eventList.get(eventNumber-1).getVendorTableFileStatus()]
// (ie. if the new file status is not-accessible or from-code, then want to update)
if ((vendorTableFileStatus != FILESTATUS_NOT_ACCESSIBLE)
&& (eventList.get(eventNumber - 1).getVendorTableFileStatus() != FILESTATUS_FROM_FILESYSTEM)) {
&& (eventList.get(eventNumber - 1).getVendorTableFileStatus()
!= FILESTATUS_FROM_FILESYSTEM)) {
vendorTableFileStatus = eventList.get(eventNumber - 1).getVendorTableFileStatus();
}
}
Expand Down

0 comments on commit 12e52bf

Please sign in to comment.