Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
navarroc committed Jan 17, 2025
1 parent c81f5e8 commit 0e876e6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ public Dataset deleteDataset(@Parameter(name = "Dataset Id from data service", r
}
}

// Adjust user quota after removing the dataset and files
// Adjust user quota after removing the dataset and files
// check if the dataset is hazard dataset
String dataType = dataset.getDataType();
String subDataType;
Expand All @@ -514,10 +514,10 @@ public Dataset deleteDataset(@Parameter(name = "Dataset Id from data service", r

// reduce the number of hazard from the space
if (isHazardDataset) {
logger.debug("Decreasing hazard dataset quota");
logger.debug("Decreasing hazard dataset quota");
AllocationUtils.decreaseUsage(allocationsRepository, this.username, "hazardDatasets");
} else {
logger.debug("Decreasing dataset quota");
logger.debug("Decreasing dataset quota");
AllocationUtils.decreaseUsage(allocationsRepository, this.username, "datasets");
}

Expand Down

0 comments on commit 0e876e6

Please sign in to comment.