Skip to content

Commit

Permalink
removing default constructors due to checkstyles not liking it
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser58 committed Aug 20, 2024
1 parent 6a706d1 commit ccad9f9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package hirs.utils.tpm.eventlog.events;

import lombok.AccessLevel;
import lombok.NoArgsConstructor;
//import lombok.AccessLevel;
//import lombok.NoArgsConstructor;

/**
* Class for defining constants referenced in the PC Client
* Platform Firmware Profile specification.
*/
@NoArgsConstructor(access = AccessLevel.PRIVATE)
//@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class EvConstants {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class NvIndexDynamicEventLogData {
/**
* Human-readable description of the data within this DEVICE_SECURITY_EVENT_DATA/..DATA2 event.
*/
String nvIndexDynamicInfo = "";
private String nvIndexDynamicInfo = "";

/**
* NvIndexInstanceEventLogData constructor.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
package hirs.utils.tpm.eventlog.spdm;

import lombok.AccessLevel;
import lombok.NoArgsConstructor;

/**
* Class for defining hash algorithms referenced in the DMTF SPDM specification.
* SPDM 1.3.0, Table 21, MeasurementHashAlgo.
*/
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class SpdmHa {

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package hirs.utils.tpm.eventlog.uefi;

import lombok.AccessLevel;
import lombok.NoArgsConstructor;
//import lombok.AccessLevel;
//import lombok.NoArgsConstructor;

/**
* This class contains the String constants that are referenced by UEFI.
* It is expected that member properties of this class will expand as
* more functionality is added.
*/
@NoArgsConstructor(access = AccessLevel.PRIVATE)
//@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class UefiConstants {

/**
Expand Down

0 comments on commit ccad9f9

Please sign in to comment.