diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-01-23 23:49:22 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-01-24 09:39:43 +0100 |
commit | eae20d0b93407af371d8600a9e04a5dffd3e0a50 (patch) | |
tree | 5618a4afbd59e2c7c9d8e74746c44c06736b2116 /sonar-db/src/main/resources/org/sonar/db | |
parent | 5542384ebb07ce5f95251dfc26425197249378fa (diff) | |
download | sonarqube-eae20d0b93407af371d8600a9e04a5dffd3e0a50.tar.gz sonarqube-eae20d0b93407af371d8600a9e04a5dffd3e0a50.zip |
Drop unused methods in SnapshotDao
Diffstat (limited to 'sonar-db/src/main/resources/org/sonar/db')
-rw-r--r-- | sonar-db/src/main/resources/org/sonar/db/component/SnapshotMapper.xml | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sonar-db/src/main/resources/org/sonar/db/component/SnapshotMapper.xml b/sonar-db/src/main/resources/org/sonar/db/component/SnapshotMapper.xml index 1a2fa61ff2e..79051c4042e 100644 --- a/sonar-db/src/main/resources/org/sonar/db/component/SnapshotMapper.xml +++ b/sonar-db/src/main/resources/org/sonar/db/component/SnapshotMapper.xml @@ -41,18 +41,6 @@ where s.id=#{key,jdbcType=BIGINT} </select> - <select id="selectByIds" parameterType="Long" resultType="Snapshot"> - SELECT - <include refid="snapshotColumns" /> - FROM - snapshots s - WHERE - s.id in - <foreach collection="ids" item="id" separator="," open="(" close=")"> - #{id,jdbcType=BIGINT} - </foreach> - </select> - <select id="selectByUuids" parameterType="List" resultType="Snapshot"> SELECT <include refid="snapshotColumns"/> |