aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jacoco-maven-plugin/src/org/jacoco/maven/RuleConfiguration.java2
-rw-r--r--org.jacoco.report/src/org/jacoco/report/check/Limit.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/jacoco-maven-plugin/src/org/jacoco/maven/RuleConfiguration.java b/jacoco-maven-plugin/src/org/jacoco/maven/RuleConfiguration.java
index 9ac74e6f..58216181 100644
--- a/jacoco-maven-plugin/src/org/jacoco/maven/RuleConfiguration.java
+++ b/jacoco-maven-plugin/src/org/jacoco/maven/RuleConfiguration.java
@@ -38,7 +38,7 @@ public class RuleConfiguration {
/**
* @param element
* element type this rule applies to
- * @todo: use ElementType directly once Maven 3 is required.
+ * TODO: use ElementType directly once Maven 3 is required.
*/
public void setElement(final String element) {
rule.setElement(ElementType.valueOf(element));
diff --git a/org.jacoco.report/src/org/jacoco/report/check/Limit.java b/org.jacoco.report/src/org/jacoco/report/check/Limit.java
index b6254f5e..2124d09a 100644
--- a/org.jacoco.report/src/org/jacoco/report/check/Limit.java
+++ b/org.jacoco.report/src/org/jacoco/report/check/Limit.java
@@ -79,10 +79,10 @@ public class Limit {
/**
* Sets the counter entity to check.
- * @todo: use ElementType directly once Maven 3 is required.
*
* @param entity
* counter entity to check
+ * TODO: use CounterEntity directly once Maven 3 is required.
*/
public void setCounter(final String entity) {
this.entity = CounterEntity.valueOf(entity);
@@ -97,10 +97,10 @@ public class Limit {
/**
* Sets the value to check.
- * @todo: use ElementType directly once Maven 3 is required.
*
* @param value
* value to check
+ * TODO: use CounterValue directly once Maven 3 is required.
*/
public void setValue(final String value) {
this.value = CounterValue.valueOf(value);