diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-18 20:11:12 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-22 17:26:24 +0100 |
commit | d88d443bbe5c5dabe45b44760108fa7b506cd7d9 (patch) | |
tree | 6e24e8e370fdb477518a57626ea19a19a9397a7a /sonar-ws | |
parent | 978f9e79abcf71dfc5f477dbce5456578f56fa6f (diff) | |
download | sonarqube-d88d443bbe5c5dabe45b44760108fa7b506cd7d9.tar.gz sonarqube-d88d443bbe5c5dabe45b44760108fa7b506cd7d9.zip |
SONAR-7364 Remove SQALE characteristics from measures and rules
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-rules.proto | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-rules.proto b/sonar-ws/src/main/protobuf/ws-rules.proto index 300017003ed..e377cf7b3c2 100644 --- a/sonar-ws/src/main/protobuf/ws-rules.proto +++ b/sonar-ws/src/main/protobuf/ws-rules.proto @@ -86,13 +86,14 @@ message Rule { optional string lang = 19; optional string langName = 20; optional Params params = 21; - // debt fields - optional string defaultDebtChar = 23; - optional string defaultDebtSubChar = 24; - optional string debtChar = 25; - optional string debtSubChar = 26; - optional string debtCharName = 27; - optional string debtSubCharName = 28; + // debt fields, unsupported since 5.5 + optional string unusedDefaultDebtChar = 23; + optional string unusedDefaultDebtSubChar = 24; + optional string unusedDebtChar = 25; + optional string unusedDebtSubChar = 26; + optional string unusedDebtCharName = 27; + optional string unusedDebtSubCharName = 28; + optional string defaultDebtRemFnType = 29; optional string defaultDebtRemFnCoeff = 30; optional string defaultDebtRemFnOffset = 31; |