Polishing

This commit is contained in:
Sam Brannen
2015-07-25 18:43:47 +02:00
parent c4bbc9df33
commit baa66f7bfa
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ import static java.lang.annotation.RetentionPolicy.*;
*/ */
@Documented @Documented
@Retention(RUNTIME) @Retention(RUNTIME)
@Target({ TYPE, METHOD, ANNOTATION_TYPE }) @Target({ TYPE, METHOD })
public @interface Rollback { public @interface Rollback {
/** /**

View File

@@ -31,7 +31,7 @@ import static java.lang.annotation.RetentionPolicy.*;
*/ */
@Documented @Documented
@Retention(RUNTIME) @Retention(RUNTIME)
@Target({ TYPE, METHOD, ANNOTATION_TYPE }) @Target({ TYPE, METHOD })
@Rollback(false) @Rollback(false)
public @interface Commit { public @interface Commit {
} }