4
0
mirror of https://github.com/QuasarApp/CopyrightFixer.git synced 2025-05-11 08:59:47 +00:00

ref Rename method with runProcessing on run.

This commit is contained in:
IgorekLoschinin 2021-04-24 22:51:54 +03:00
parent 85d25c811b
commit 65d75dcee9
2 changed files with 3 additions and 3 deletions
src/CopyrighFixer/CopyrighFixer

@ -16,7 +16,7 @@ Worker::Worker() {
}
bool Worker::runProcessing() {
bool Worker::run() {
return 1;
}

@ -21,10 +21,10 @@ public:
Worker();
/**
* @brief runProcessing It is main method for control of all parsing process.
* @brief run It is main method for control of all parsing process.
* @return
*/
bool runProcessing();
bool run();
};