diff --git a/src/main/java/com/avaje/ebeaninternal/server/deploy/AssocOneHelp.java b/src/main/java/com/avaje/ebeaninternal/server/deploy/AssocOneHelp.java
index a3a3de6c3..1faabb50f 100644
--- a/src/main/java/com/avaje/ebeaninternal/server/deploy/AssocOneHelp.java
+++ b/src/main/java/com/avaje/ebeaninternal/server/deploy/AssocOneHelp.java
@@ -21,6 +21,7 @@ abstract class AssocOneHelp {
this.property = property;
this.target = property.targetDescriptor;
}
+
/**
* Effectively skip reading (the jdbc resultSet as already in the persistence context etc).
*/
diff --git a/src/main/java/com/avaje/ebeaninternal/server/deploy/BeanCascadeInfo.java b/src/main/java/com/avaje/ebeaninternal/server/deploy/BeanCascadeInfo.java
index 3fb3d59b2..c35d6f532 100644
--- a/src/main/java/com/avaje/ebeaninternal/server/deploy/BeanCascadeInfo.java
+++ b/src/main/java/com/avaje/ebeaninternal/server/deploy/BeanCascadeInfo.java
@@ -42,7 +42,7 @@ public class BeanCascadeInfo {
save = true;
break;
default:
- throw new IllegalStateException("Unexpected CascadeType "+type);
+ throw new IllegalStateException("Unexpected CascadeType " + type);
}
}
diff --git a/src/main/java/com/avaje/ebeaninternal/server/deploy/BeanCollectionHelp.java b/src/main/java/com/avaje/ebeaninternal/server/deploy/BeanCollectionHelp.java
index 4cbbe3b8d..f870b7803 100644
--- a/src/main/java/com/avaje/ebeaninternal/server/deploy/BeanCollectionHelp.java
+++ b/src/main/java/com/avaje/ebeaninternal/server/deploy/BeanCollectionHelp.java
@@ -16,48 +16,48 @@ import java.io.IOException;
*/
public interface BeanCollectionHelp
- * For Map's this needs to take the mapKey.
- *
+ * For Map's this needs to take the mapKey.
+ *
* This implies cascade delete does not continue depth wise and that this is no
* associated L2 bean caching.
*/
@@ -1529,7 +1530,7 @@ public class BeanDescriptor
- * This provides further lazy loading via the load context.
+ * This provides further lazy loading via the load context.
*
- * This will return null for multiple Id properties.
- *
+ * This will return null for multiple Id properties.
+ *
- * That is, if a bean of this property is unmodified we don't need to
- * saveRecurse because none of its associated beans have cascade save set to
- * true.
- *
+ * That is, if a bean of this property is unmodified we don't need to
+ * saveRecurse because none of its associated beans have cascade save set to
+ * true.
+ *
- * This is the class of the associated bean, or beans contained in a list,
- * set or map.
- *
+ * This is the class of the associated bean, or beans contained in a list,
+ * set or map.
+ *