]> source.dussan.org Git - sonarqube.git/commitdiff
Deprecate the decorator barriers related to issue persistence
authorSimon Brandhof <simon.brandhof@gmail.com>
Thu, 30 May 2013 15:10:27 +0000 (17:10 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Thu, 30 May 2013 15:10:37 +0000 (17:10 +0200)
Indeed issues are now persisted in an atomic operation at the end of the batch

sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorBarriers.java

index 45185d81ec92cb610709be48121540895e94a95f..8b8562ddc0a10b11652610f0b73ed3e8d21bce54 100644 (file)
@@ -68,12 +68,16 @@ public interface DecoratorBarriers {
 
   /**
    * @since 2.13
+   * @deprecated in 3.6. Issues are persisted at the end of analysis.
    */
+  @Deprecated
   String START_VIOLATION_PERSISTENCE = "START_VIOLATION_PERSISTENCE";
 
   /**
    * @since 2.13
+   * @deprecated in 3.6. Issues are persisted at the end of analysis
    */
+  @Deprecated
   String END_OF_VIOLATION_PERSISTENCE = "END_OF_VIOLATION_PERSISTENCE";
 
   /**