aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2012-07-10 17:46:50 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2012-07-10 17:47:03 +0200
commitb273c3cb51d60429fe223fc3a9d4bd25d84240f7 (patch)
treebe9ecf06aa44bb02f37ac5fa2795b0915cb4ace8 /sonar-plugin-api/src
parent6d3ab7ef3aa6672e6af3925f670fdd660225fe5f (diff)
downloadsonarqube-b273c3cb51d60429fe223fc3a9d4bd25d84240f7.tar.gz
sonarqube-b273c3cb51d60429fe223fc3a9d4bd25d84240f7.zip
Allow to mock CommandExecutor
Changing final to non-final does not break binary compatibility. Constructor is kept private.
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandExecutor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandExecutor.java b/sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandExecutor.java
index 0384b5251cb..887a62495a4 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandExecutor.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandExecutor.java
@@ -36,7 +36,7 @@ import java.util.concurrent.*;
*
* @since 2.7
*/
-public final class CommandExecutor {
+public class CommandExecutor {
private static final Logger LOG = LoggerFactory.getLogger(CommandExecutor.class);