(no commit message)
[utils] / test / enterprise / src / main / java / org / wamblee / test / persistence / JpaCustomizerBuilder.java
index bd62c054fcfc40381c485f9dbc8efc684ccee291..6eae6661a94963d0ff601b2e9d083c10885f2d8f 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.test.persistence;
 
 import java.util.ArrayList;
@@ -20,8 +20,8 @@ import java.util.List;
 import java.util.ServiceLoader;
 
 /**
- * JPA customizer builder implements the {@link ServiceLoader} based mechanism for looking up 
- * JPA customizers. 
+ * JPA customizer builder implements the {@link ServiceLoader} based mechanism
+ * for looking up JPA customizers.
  */
 public class JpaCustomizerBuilder {
 
@@ -29,9 +29,10 @@ public class JpaCustomizerBuilder {
         .load(JpaCustomizer.class);
 
     /**
-     * Gets the customizer to use. This is a composite customizer that combines all customizers that
-     * were found. 
-     * @return JPA customizer. 
+     * Gets the customizer to use. This is a composite customizer that combines
+     * all customizers that were found.
+     * 
+     * @return JPA customizer.
      */
     public static JpaCustomizer getCustomizer() {
         List<JpaCustomizer> customizers = new ArrayList<JpaCustomizer>();