aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-07-18 16:36:45 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-07-18 19:14:30 +0200
commit89369f354b6f52a6dcc488127c1286525e48372a (patch)
tree1be253eea41648cb272edaca2e367a3a1fd594d5 /sonar-plugin-api
parent097d696e994330a7523c5ed883b7c5afa7130152 (diff)
downloadsonarqube-89369f354b6f52a6dcc488127c1286525e48372a.tar.gz
sonarqube-89369f354b6f52a6dcc488127c1286525e48372a.zip
Fix Quality flaws
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandException.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandException.java b/sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandException.java
index c16c1871c17..1d7749d84fa 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandException.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/utils/command/CommandException.java
@@ -21,7 +21,7 @@ package org.sonar.api.utils.command;
public class CommandException extends RuntimeException {
- private final Command command;
+ private final transient Command command;
public CommandException(Command command, String message, Throwable throwable) {
super(message + " [command: " + command + "]", throwable);