Made emthod protected + comment improvement

This commit is contained in:
Chomp
2025-06-17 09:51:35 +01:00
parent 51fc2c4a0b
commit 060a2630c8
2 changed files with 2 additions and 2 deletions
@@ -205,7 +205,7 @@ public class BackupService
}
}
private SortedDictionary<long, string> GetBackupPathsWithCreationTimestamp(List<string> backupPaths)
protected SortedDictionary<long, string> GetBackupPathsWithCreationTimestamp(List<string> backupPaths)
{
var result = new SortedDictionary<long, string>();
foreach (var backupPath in backupPaths)
@@ -375,7 +375,7 @@ public class RagfairOfferHolder(
}
/// <summary>
/// Flag offers with a end date set before the passed in timestamp
/// Flag offers with an end date set before the passed in timestamp
/// </summary>
/// <param name="timestamp">Timestamp at point offer is 'expired'</param>
public void FlagExpiredOffersAfterDate(long timestamp)