diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-05-12 17:50:13 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-05-16 12:08:18 +0200 |
commit | 4e75d5f0cb8454951d2c3d7a0fe30c00cb816415 (patch) | |
tree | 1556c7722cfc02290746aeb6036d393d68efe4f7 /sonar-ws/src/main/protobuf | |
parent | e9d01329ece74fc444fdc01689e2833f691063d9 (diff) | |
download | sonarqube-4e75d5f0cb8454951d2c3d7a0fe30c00cb816415.tar.gz sonarqube-4e75d5f0cb8454951d2c3d7a0fe30c00cb816415.zip |
SONAR-7400 Do not return anymore active rule parent key in rules WS
Diffstat (limited to 'sonar-ws/src/main/protobuf')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-rules.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-rules.proto b/sonar-ws/src/main/protobuf/ws-rules.proto index 08067de63ea..c08cad07af2 100644 --- a/sonar-ws/src/main/protobuf/ws-rules.proto +++ b/sonar-ws/src/main/protobuf/ws-rules.proto @@ -154,7 +154,8 @@ message Active { optional string qProfile = 1; optional string inherit = 2; optional string severity = 3; - optional string parent = 4; + // Unused since 5.6, it has been removed because it was never used and costly to compute + optional string unusedParent = 4; repeated Param params = 5; message Param { |