diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-25 15:16:02 +0100 |
---|---|---|
committer | Duarte Meneses <duarte.meneses@sonarsource.com> | 2017-01-27 16:26:30 +0100 |
commit | f3741d7e1fd83961c038f71338f986f35a22720d (patch) | |
tree | 774e23ac0a9253c19c526c6d36bf548b0bffc0e1 /sonar-scanner-protocol | |
parent | 976e8639cf83e476f46d03db90d12763620091cb (diff) | |
download | sonarqube-f3741d7e1fd83961c038f71338f986f35a22720d.tar.gz sonarqube-f3741d7e1fd83961c038f71338f986f35a22720d.zip |
SONAR-8701 Store number of lines of files in compute engine Component
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r-- | sonar-scanner-protocol/src/main/protobuf/scanner_report.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto index 01a9cc7ead8..0bfdff21c15 100644 --- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto +++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto @@ -86,7 +86,7 @@ message Component { // Only available on PROJECT and MODULE types // TODO rename this property -> moduleKey ? string key = 10; - // Only available on FILE type + // Only available on FILE type, should always be at least 1 int32 lines = 11; // Only available on PROJECT and MODULE types string description = 12; |