aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch-protocol/src/main/protobuf/file_source_db.proto
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-02-10 18:38:35 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-02-10 18:38:35 +0100
commitf7f050f4dbb5754243fbcc884eb1a5c1c0a04c10 (patch)
tree728814d4dc246e21e030e93099d1337e002ad6be /sonar-batch-protocol/src/main/protobuf/file_source_db.proto
parent627a14b11aed4a2df73342d10ed8938adc58f167 (diff)
downloadsonarqube-f7f050f4dbb5754243fbcc884eb1a5c1c0a04c10.tar.gz
sonarqube-f7f050f4dbb5754243fbcc884eb1a5c1c0a04c10.zip
Use packed repeated fields in protobuf messages
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf/file_source_db.proto')
-rw-r--r--sonar-batch-protocol/src/main/protobuf/file_source_db.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/file_source_db.proto b/sonar-batch-protocol/src/main/protobuf/file_source_db.proto
index bdb0b877949..cc29e17ccdc 100644
--- a/sonar-batch-protocol/src/main/protobuf/file_source_db.proto
+++ b/sonar-batch-protocol/src/main/protobuf/file_source_db.proto
@@ -64,7 +64,7 @@ message Line {
optional string highlighting = 15;
optional string symbols = 16;
- repeated int32 duplications = 17;
+ repeated int32 duplications = 17 [packed=true];
}
message Data {