diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2017-05-24 15:58:49 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2017-05-24 16:10:07 +0200 |
commit | 3e6eefb171d2b06c7f1e5efc8d8d559195df974e (patch) | |
tree | d45d11995966b342577196b7558ffadf4834739a /server | |
parent | 8dd151e0bebd398d415ae99fde5bf10f11fcb00a (diff) | |
download | sonarqube-3e6eefb171d2b06c7f1e5efc8d8d559195df974e.tar.gz sonarqube-3e6eefb171d2b06c7f1e5efc8d8d559195df974e.zip |
SONAR-9308 WS api/issues/search do not return the component uuid in the flows location
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchResponseFormat.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchResponseFormat.java b/server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchResponseFormat.java index 4ea2c89a741..8c0f4ff97bf 100644 --- a/server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchResponseFormat.java +++ b/server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchResponseFormat.java @@ -210,9 +210,6 @@ public class SearchResponseFormat { private static Location convertLocation(DbIssues.Location source) { Location.Builder target = Location.newBuilder(); - if (source.hasComponentId()) { - target.setComponentId(source.getComponentId()); - } if (source.hasMsg()) { target.setMsg(source.getMsg()); } |