aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch-protocol/src/main/protobuf/batch_report.proto
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-10-06 10:25:34 +0200
committerJulien HENRY <julien.henry@sonarsource.com>2015-10-07 12:23:03 +0200
commit2165aab926de048fd908412ab5c6500529ee802f (patch)
treeb580af27ca0f01aa8e08608c982e896c2143f38f /sonar-batch-protocol/src/main/protobuf/batch_report.proto
parent27377cc2cc94aab30700a380f40b3035d14e5535 (diff)
downloadsonarqube-2165aab926de048fd908412ab5c6500529ee802f.tar.gz
sonarqube-2165aab926de048fd908412ab5c6500529ee802f.zip
Remove issue attributes from batch
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf/batch_report.proto')
-rw-r--r--sonar-batch-protocol/src/main/protobuf/batch_report.proto5
1 files changed, 2 insertions, 3 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/batch_report.proto b/sonar-batch-protocol/src/main/protobuf/batch_report.proto
index efe36ee08f6..631c2c4ae49 100644
--- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto
+++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto
@@ -104,10 +104,9 @@ message Issue {
optional string msg = 4;
optional Severity severity = 5;
optional double effort_to_fix = 6;
- optional string attributes = 7;
// 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 = 9;
- repeated Flow flow = 10;
+ optional TextRange text_range = 7;
+ repeated Flow flow = 8;
}
message IssueLocation {