diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2014-05-07 11:37:06 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2014-05-07 13:03:34 +0200 |
commit | 12077a645e769be0d4387f30a1e5f5c1966dc08e (patch) | |
tree | 5c3b3c2c5e344a6f26b6c501330614827cac39de /sonar-plugin-api | |
parent | a593b587293f7e7948db5fdfc714ac25d0c0e23f (diff) | |
download | sonarqube-12077a645e769be0d4387f30a1e5f5c1966dc08e.tar.gz sonarqube-12077a645e769be0d4387f30a1e5f5c1966dc08e.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.java | 4 |
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 */ |