Skip to content

Commit

Permalink
style(lint): Final lint issues
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Genov <[email protected]>
  • Loading branch information
Michaelpalacce committed Jan 14, 2025
1 parent 4bb49c7 commit c6d4168
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* VraNgIntegrationUtils is used to get the default VraNgIntegration.
*/
final public class VraNgIntegrationUtils {
public final class VraNgIntegrationUtils {
public static final String DEFAULT_INTEGRATION_NAME = "embedded-VRO";
private static final VraNgIntegrationUtils INSTANCE = new VraNgIntegrationUtils();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.vmware.pscoe.iac.artifact.aria.configuration.ConfigurationVraNg;
import com.vmware.pscoe.iac.artifact.model.PackageType;

final public class ConfigurationCs extends ConfigurationVraNg {
public final class ConfigurationCs extends ConfigurationVraNg {
private ConfigurationCs(Properties props) {
super(PackageType.CS, props);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

public class BlueprintVersionsMockBuilder {
public static final String DATE_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSSSS'Z'";
private static final long SECOND_IN_MS = 1000L;

private final JsonElement mockData;
private int versionsCount = 1;
Expand Down Expand Up @@ -73,7 +74,7 @@ public JsonArray build() {
newVersion.addProperty("version", String.valueOf(i));
newVersion.addProperty("id", String.valueOf(i));
newVersion.addProperty("createdAt", new SimpleDateFormat(DATE_FORMAT).format(
new Date(i * 1000L)));
new Date(i * SECOND_IN_MS)));

versionsArray.add(newVersion);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public PropertyGroupMockBuilder() throws IOException {
try {
String read = IOUtils.toString(cl.getResourceAsStream("test/fixtures/propertyGroup.json"),
StandardCharsets.UTF_8);
;
this.mockData = JsonParser.parseString(read);
} catch (IOException ex) {
throw ex;
Expand Down

0 comments on commit c6d4168

Please sign in to comment.