]> source.dussan.org Git - sonarqube.git/commitdiff
Fix indentation of XML file
authorSimon Brandhof <simon.brandhof@gmail.com>
Tue, 7 Feb 2012 22:24:34 +0000 (23:24 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Tue, 7 Feb 2012 22:24:34 +0000 (23:24 +0100)
sonar-core/src/main/resources/org/sonar/core/purge/PurgeMapper.xml

index 38ef704ed70f0a9912bc2bdc808488705e70ae07..815a1920462880d8033584498ca40b195c89e855 100644 (file)
@@ -3,7 +3,7 @@
 
 <mapper namespace="org.sonar.core.purge.PurgeMapper">
 
-  <select id="selectSnapshotIds" parameterType="map" resultType="long" >
+  <select id="selectSnapshotIds" parameterType="map" resultType="long">
     select s.id from snapshots s
     <where>
       <if test="islast != null">
   </delete>
 
   <delete id="deleteSnapshotMeasuresOnQualityModelRequirements" parameterType="long">
-      delete from project_measures where snapshot_id=#{id} and
-      characteristic_id in (select id from characteristics where rule_id is not null)
-    </delete>
+    delete from project_measures where snapshot_id=#{id} and
+    characteristic_id in (select id from characteristics where rule_id is not null)
+  </delete>
 
   <update id="updatePurgeStatusToOne" parameterType="long">
     update snapshots set purge_status = 1 where id = #{id}