(no commit message)
[utils] / support / inject / src / main / java / org / wamblee / inject / SimpleInjector.java
index b41eb4c35f65cd6faa5f577bc031edd076b9d5df..449a65a33162bf97114510bbafd8879e5fcce8fc 100644 (file)
@@ -15,7 +15,6 @@
  */
 package org.wamblee.inject;
 
-
 /**
  * The main entry point for programmatic dependency injection. A different
  * {@link InjectorFactory} can be plugged in for testing.
@@ -23,6 +22,7 @@ package org.wamblee.inject;
  * <p>
  * Given the following class:
  * </p>
+ * 
  * <pre>
  *   class Pojo {
  *     &#064;EJB
@@ -47,13 +47,12 @@ package org.wamblee.inject;
  * The <code>SimpleInjector</code> should be cached. This is because the
  * <code>SimpleInjector</code> caches the {@link Injector} objects that it uses
  * internally for performance. This is done because creation of these internal
- * <code>Injector</code> objects may be costly. Caching the simple injector makes sure
- * that a class is not analysed again for annotations every time injection is
- * used.
+ * <code>Injector</code> objects may be costly. Caching the simple injector
+ * makes sure that a class is not analysed again for annotations every time
+ * injection is used.
  * 
  * For more advanced cases, the injector factory can also be directly
- * constructed instead of being obtained through the
- * {@link InjectorBuilder}.
+ * constructed instead of being obtained through the {@link InjectorBuilder}.
  * 
  * @author Erik Brakkee
  */