aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2014-05-07 11:37:06 +0200
committerJulien HENRY <julien.henry@sonarsource.com>2014-05-07 11:37:52 +0200
commitc70e47fb30545a9059d3470c2e086a76e2a6e605 (patch)
treeb49a01d06f9724333d8cd44690740923dcec79f3 /sonar-plugin-api
parent9688a077297d1f52c6bc3cec504d0d5dcf61d800 (diff)
downloadsonarqube-c70e47fb30545a9059d3470c2e086a76e2a6e605.tar.gz
sonarqube-c70e47fb30545a9059d3470c2e086a76e2a6e605.zip
SONAR-5189 Reintroduce a memory cache for measure in decorators
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorContext.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorContext.java b/sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorContext.java
index 3cf8b4dee89..5d13d0ac7da 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorContext.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/batch/DecoratorContext.java
@@ -76,14 +76,14 @@ public interface DecoratorContext {
Collection<Measure> getChildrenMeasures(Metric metric);
/**
- * Add a measure on the current resource. It can not be executed from children contexts.
+ * Add a new measure on the current resource. It can not be executed from children contexts.
*
* @return the same context
*/
DecoratorContext saveMeasure(Measure measure);
/**
- * Add a measure on the current resource. It can not be executed from children contexts.
+ * Add a new measure on the current resource. It can not be executed from children contexts.
*
* @return the current object
*/