diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2022-09-14 10:52:04 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-09-16 20:03:14 +0000 |
commit | 6f2881c71996715ba3a9a7b2451f008c2239d7eb (patch) | |
tree | 3a3a293815a30d7d61899c866118431d3c8a6318 /sonar-ws | |
parent | e302f298b39c133f7290571b13db668610867fa1 (diff) | |
download | sonarqube-6f2881c71996715ba3a9a7b2451f008c2239d7eb.tar.gz sonarqube-6f2881c71996715ba3a9a7b2451f008c2239d7eb.zip |
SONAR-17287 Return optional flow description and type in WS responses
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-commons.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-commons.proto b/sonar-ws/src/main/protobuf/ws-commons.proto index 71a564212a0..c24c1d5d5e6 100644 --- a/sonar-ws/src/main/protobuf/ws-commons.proto +++ b/sonar-ws/src/main/protobuf/ws-commons.proto @@ -96,7 +96,7 @@ message TextRange { message Flow { repeated Location locations = 1; optional string description = 2; - optional FlowType flowType = 3; + optional FlowType type = 3; } enum FlowType { |