aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tradefed/command/CommandScheduler.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/tradefed/command/CommandScheduler.java')
-rw-r--r--src/com/android/tradefed/command/CommandScheduler.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/com/android/tradefed/command/CommandScheduler.java b/src/com/android/tradefed/command/CommandScheduler.java
index b0e2b3090..e9db89c51 100644
--- a/src/com/android/tradefed/command/CommandScheduler.java
+++ b/src/com/android/tradefed/command/CommandScheduler.java
@@ -68,7 +68,7 @@ import com.android.tradefed.util.keystore.IKeyStoreClient;
import com.android.tradefed.util.keystore.IKeyStoreFactory;
import com.android.tradefed.util.keystore.KeyStoreException;
-import org.json.JSONException;
+import com.google.common.annotations.VisibleForTesting;
import java.io.File;
import java.io.IOException;
@@ -93,6 +93,8 @@ import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.regex.Pattern;
+import org.json.JSONException;
+
/**
* A scheduler for running TradeFederation commands across all available devices.
* <p/>
@@ -2000,10 +2002,9 @@ public class CommandScheduler extends Thread implements ICommandScheduler, IComm
}
/**
- * Set the command file reloading flag
- *
- * @VisibleForTesting
+ * Set the command file reloading flag.
*/
+ @VisibleForTesting
void setCommandFileReload(boolean b) {
mReloadCmdfiles = b;
}