From e3d090576c826f810296fadcfb3303c59c0688ac Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Mon, 18 Dec 2017 09:23:30 +0100 Subject: [PATCH] Rename CheckAllTransferTasks to RunTransferTasks. --- AutoTx/AutoTx.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AutoTx/AutoTx.cs b/AutoTx/AutoTx.cs index b27d729..d246663 100644 --- a/AutoTx/AutoTx.cs +++ b/AutoTx/AutoTx.cs @@ -486,7 +486,7 @@ namespace AutoTx // always check the incoming dirs, independently of running transfers: CheckIncomingDirectories(); // now trigger potential transfer tasks: - CheckAllTransferTasks(); + RunTransferTasks(); } } @@ -588,11 +588,11 @@ namespace AutoTx return ""; } - + /// <summary> /// Check for transfers to be finished, resumed or newly initiated. /// </summary> - public void CheckAllTransferTasks() { + public void RunTransferTasks() { // only proceed when in a valid state: if (_transferState != TxState.Stopped && _transferState != TxState.Paused) -- GitLab