[Minor] enums has abstract methods...

This commit is contained in:
Robert von Burg 2014-07-15 18:51:34 +02:00
parent 87ee16e33b
commit a80c24a82b
1 changed files with 1 additions and 3 deletions

View File

@ -33,7 +33,5 @@ public enum TransactionCloseStrategy {
/** /**
* @param tx * @param tx
*/ */
public void close(StrolchTransaction tx) { public abstract void close(StrolchTransaction tx);
throw new UnsupportedOperationException("Override in enum!"); //$NON-NLS-1$
}
} }