diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2015-11-10 17:29:52 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2015-11-12 11:01:30 +0100 |
commit | c20343073c1c3ba5356db69a9c1a040cab339fa1 (patch) | |
tree | 6004d5f70eac2c329ace178a2197dec29f190a89 /sonar-batch-protocol/src/main | |
parent | dd16b88717a81272e50624bd60ece463fae8ec76 (diff) | |
download | sonarqube-c20343073c1c3ba5356db69a9c1a040cab339fa1.tar.gz sonarqube-c20343073c1c3ba5356db69a9c1a040cab339fa1.zip |
SONAR-6993 Replace hash of CpdTextBlock from a list of int to a string
Having a the hash represented as a list of int in the report brings too much complexity in the compute engine, as we need only a string.
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 ae012d0fc2d..2913e856fb2 100644 --- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto +++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto @@ -144,7 +144,7 @@ message Duplication { // Used for cross project duplication message CpdTextBlock { - repeated int32 hash = 1 [packed = true]; + optional string hash = 1; optional int32 start_line = 2; optional int32 end_line = 3; optional int32 start_token_index = 4; |