2
0
Эх сурвалжийг харах

Remove finals - conflicts with CGLIB generated classes.

Ben Alex 20 жил өмнө
parent
commit
0b6d0a5798

+ 4 - 4
domain/src/main/java/org/acegisecurity/domain/impl/AbstractPersistableEntity.java

@@ -51,7 +51,7 @@ public abstract class AbstractPersistableEntity extends BusinessObject
      *         <code>false</code> otherwise
      */
 	@Transient
-    public final boolean isNew() {
+    public boolean isNew() {
         return (getInternalId() == null);
     }
 
@@ -68,16 +68,16 @@ public abstract class AbstractPersistableEntity extends BusinessObject
      */
     @Version
     @Column(name="version", nullable=false)
-    public final int getVersion() {
+    public int getVersion() {
         return version;
     }
 
     /**
-     * Sets the version numbers. Should only be used by the persistence layer.
+     * Sets the version numbers.
      *
      * @param version the new version number to use
      */
-    protected final void setVersion(int version) {
+    public void setVersion(int version) {
         this.version = version;
     }
 }