mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 02:53:10 +01:00
Remove trailing whitespace (#3668)
This commit is contained in:
@@ -39,7 +39,7 @@ public:
|
||||
/// Purges archived log files. The path to the
|
||||
/// current "hot" log file is given.
|
||||
/// To find archived log files, look for files
|
||||
/// with a name consisting of the given path
|
||||
/// with a name consisting of the given path
|
||||
/// plus any suffix (e.g., .1, .20050929081500, .1.gz).
|
||||
/// A list of archived files can be obtained by calling
|
||||
/// the list() method.
|
||||
@@ -67,9 +67,9 @@ class Foundation_API PurgeByAgeStrategy: public PurgeStrategy
|
||||
public:
|
||||
PurgeByAgeStrategy(const Timespan& age);
|
||||
~PurgeByAgeStrategy();
|
||||
|
||||
|
||||
void purge(const std::string& path);
|
||||
|
||||
|
||||
private:
|
||||
Timespan _age;
|
||||
};
|
||||
@@ -83,9 +83,9 @@ class Foundation_API PurgeByCountStrategy: public PurgeStrategy
|
||||
public:
|
||||
PurgeByCountStrategy(int count);
|
||||
~PurgeByCountStrategy();
|
||||
|
||||
|
||||
void purge(const std::string& path);
|
||||
|
||||
|
||||
private:
|
||||
int _count;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user