mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-24 07:06:46 +00:00
Merge pull request #799 from nsacyber/v3_issue-797
[#797] Remove SupportReferenceManifest.processed
This commit is contained in:
commit
19d3bdd1ac
@ -32,8 +32,6 @@ public class SupportReferenceManifest extends ReferenceManifest {
|
|||||||
private int pcrHash = 0;
|
private int pcrHash = 0;
|
||||||
@Column
|
@Column
|
||||||
private boolean updated = false;
|
private boolean updated = false;
|
||||||
@Column
|
|
||||||
private boolean processed = false;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Main constructor for the RIM object. This takes in a byte array of a
|
* Main constructor for the RIM object. This takes in a byte array of a
|
||||||
@ -127,11 +125,11 @@ public class SupportReferenceManifest extends ReferenceManifest {
|
|||||||
if (o == null || getClass() != o.getClass()) return false;
|
if (o == null || getClass() != o.getClass()) return false;
|
||||||
if (!super.equals(o)) return false;
|
if (!super.equals(o)) return false;
|
||||||
SupportReferenceManifest that = (SupportReferenceManifest) o;
|
SupportReferenceManifest that = (SupportReferenceManifest) o;
|
||||||
return pcrHash == that.pcrHash && updated == that.updated && processed == that.processed;
|
return pcrHash == that.pcrHash && updated == that.updated;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
return Objects.hash(super.hashCode(), pcrHash, updated, processed);
|
return Objects.hash(super.hashCode(), pcrHash, updated);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user