From e60a0ebef11ce257686ee8edef6ced0747ca730e Mon Sep 17 00:00:00 2001
From: Sai Pullabhotla
Date: Mon, 10 Oct 2016 06:11:53 -0500
Subject: [PATCH] Fix Javadoc error in EntityListener class #42
---
src/main/java/com/jmethods/catatumbo/EntityListener.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/jmethods/catatumbo/EntityListener.java b/src/main/java/com/jmethods/catatumbo/EntityListener.java
index 0e0ecd3..c13c593 100644
--- a/src/main/java/com/jmethods/catatumbo/EntityListener.java
+++ b/src/main/java/com/jmethods/catatumbo/EntityListener.java
@@ -38,6 +38,8 @@
*
*
* Callback methods must have one or more of these annotations:
+ *
+ *
*
* - {@link PreInsert}
* - {@link PostInsert}
@@ -49,10 +51,11 @@
* - {@link PostDelete}
* - {@link PostLoad}
*
- *
*
*
* Entity Listener classes must conform to the following specification:
+ *
+ *
*
* - Must have a default (no-arg) constructor
* - Each callback method must be public, must not be static, abstract or
@@ -67,7 +70,6 @@
* can have both {@link PreInsert}, {@link PreUpdate} and {@link PreUpsert}
* annotations.
*
- *
*
* @author Sai Pullabhotla
*