diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2016-03-15 16:41:22 +0100 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2016-03-16 14:04:34 +0100 |
commit | 712c66d95af8076fe3b4efd7392a61672dc7b656 (patch) | |
tree | 58cc574019f3416e66303affb946389d30629237 /sonar-batch-protocol/src/main | |
parent | 56eec4bfb1ad5b99e6bcf6b93806dbaa87cd6a13 (diff) | |
download | sonarqube-712c66d95af8076fe3b4efd7392a61672dc7b656.tar.gz sonarqube-712c66d95af8076fe3b4efd7392a61672dc7b656.zip |
SONAR-7414 Change Sensor API to update Issue#effortToFix to Issue#gap
Diffstat (limited to 'sonar-batch-protocol/src/main')
-rw-r--r-- | sonar-batch-protocol/src/main/protobuf/batch_report.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/batch_report.proto b/sonar-batch-protocol/src/main/protobuf/batch_report.proto index 2913e856fb2..2abebf20e00 100644 --- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto +++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto @@ -100,7 +100,7 @@ message Issue { optional int32 line = 3; optional string msg = 4; optional Severity severity = 5; - optional double effort_to_fix = 6; + optional double gap = 6; // Only when issue component is a file. Can also be empty for a file if this is an issue global to the file. optional TextRange text_range = 7; repeated Flow flow = 8; |