fix pre-commit checks - missing / extra EOF line

This commit is contained in:
Pearl Dsilva 2025-12-05 10:00:16 -05:00
parent b4a80344f2
commit 34844c0469
4 changed files with 2 additions and 4 deletions

View File

@ -112,4 +112,3 @@ public interface DomainAndZoneIdResolver {
return validZoneIds; return validZoneIds;
} }
} }

View File

@ -84,4 +84,3 @@ public class BackupOfferingDetailsVO implements ResourceDetail {
return display; return display;
} }
} }

View File

@ -28,4 +28,4 @@ public interface BackupOfferingDetailsDao extends GenericDao<BackupOfferingDetai
List<Long> findZoneIds(final long resourceId); List<Long> findZoneIds(final long resourceId);
String getDetail(Long backupOfferingId, String key); String getDetail(Long backupOfferingId, String key);
List<Long> findOfferingIdsByDomainIds(List<Long> domainIds); List<Long> findOfferingIdsByDomainIds(List<Long> domainIds);
} }

View File

@ -27,4 +27,4 @@ CREATE TABLE `cloud`.`backup_offering_details` (
`display` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Should detail be displayed to the end user', `display` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'Should detail be displayed to the end user',
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
CONSTRAINT `fk_offering_details__backup_offering_id` FOREIGN KEY `fk_offering_details__backup_offering_id`(`backup_offering_id`) REFERENCES `backup_offering`(`id`) ON DELETE CASCADE CONSTRAINT `fk_offering_details__backup_offering_id` FOREIGN KEY `fk_offering_details__backup_offering_id`(`backup_offering_id`) REFERENCES `backup_offering`(`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;