Cosmetic fix
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1466440 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/metadata/annotation/visitor/ComponentVisitor.java b/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/metadata/annotation/visitor/ComponentVisitor.java
index 5f0f58b..71462e8 100644
--- a/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/metadata/annotation/visitor/ComponentVisitor.java
+++ b/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/metadata/annotation/visitor/ComponentVisitor.java
@@ -131,7 +131,7 @@
workbench.setRoot(component);
} else {
// Error case: 2 component type's annotations (@Component and @Handler for example) on the same class
- reporter.error("Multiple 'component type' annotations on the class '{}'.", classname);
+ reporter.error("Multiple 'component type' annotations on the class '{%s}'.", classname);
reporter.warn("@Component will be ignored.");
}
}
diff --git a/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/metadata/annotation/visitor/HandlerVisitor.java b/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/metadata/annotation/visitor/HandlerVisitor.java
index 0bc16fd..9ecf3d6 100644
--- a/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/metadata/annotation/visitor/HandlerVisitor.java
+++ b/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/metadata/annotation/visitor/HandlerVisitor.java
@@ -83,7 +83,7 @@
workbench.setRoot(handler);
} else {
// Error case: 2 component type's annotations (@Component and @Handler for example) on the same class
- reporter.error("Multiple 'component type' annotations on the class '{}'.", classname);
+ reporter.error("Multiple 'component type' annotations on the class '{%s}'.", classname);
reporter.warn("@Handler will be ignored.");
}
}
diff --git a/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/spi/AbsBindingModule.java b/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/spi/AbsBindingModule.java
index d4317be..7a1f1c7 100644
--- a/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/spi/AbsBindingModule.java
+++ b/ipojo/manipulator/manipulator/src/main/java/org/apache/felix/ipojo/manipulator/spi/AbsBindingModule.java
@@ -43,7 +43,7 @@
public abstract class AbsBindingModule implements Module {
/**
- * Build dindings.
+ * Build bindings.
*/
private List<Binding> bindings = new ArrayList<Binding>();