From 16f7de30c60af1dcd8265dfd6be8852e8e51a848 Mon Sep 17 00:00:00 2001 From: rbygrave Date: Mon, 1 Jun 2015 12:11:53 +1200 Subject: [PATCH] No effective change - format code --- .../avaje/ebean/annotation/CacheStrategy.java | 2 +- .../avaje/ebean/annotation/CacheTuning.java | 2 +- .../ebean/annotation/CreatedTimestamp.java | 2 +- .../ebean/annotation/EmbeddedColumns.java | 2 +- .../com/avaje/ebean/annotation/Encrypted.java | 2 +- .../avaje/ebean/annotation/EnumMapping.java | 2 +- .../com/avaje/ebean/annotation/EnumValue.java | 2 +- .../com/avaje/ebean/annotation/Expose.java | 24 +++++++++---------- .../com/avaje/ebean/annotation/Formula.java | 2 +- .../com/avaje/ebean/annotation/Index.java | 12 +++++----- .../avaje/ebean/annotation/NamedUpdate.java | 2 +- .../avaje/ebean/annotation/NamedUpdates.java | 2 +- .../avaje/ebean/annotation/PrivateOwned.java | 2 +- .../java/com/avaje/ebean/annotation/Sql.java | 2 +- .../com/avaje/ebean/annotation/SqlSelect.java | 2 +- .../avaje/ebean/annotation/Transactional.java | 2 +- .../avaje/ebean/annotation/UpdateMode.java | 2 +- .../ebean/annotation/UpdatedTimestamp.java | 2 +- .../com/avaje/ebean/annotation/Where.java | 2 +- 19 files changed, 35 insertions(+), 35 deletions(-) diff --git a/src/main/java/com/avaje/ebean/annotation/CacheStrategy.java b/src/main/java/com/avaje/ebean/annotation/CacheStrategy.java index e2a00b2a4..765bc2d80 100644 --- a/src/main/java/com/avaje/ebean/annotation/CacheStrategy.java +++ b/src/main/java/com/avaje/ebean/annotation/CacheStrategy.java @@ -55,4 +55,4 @@ public @interface CacheStrategy { */ String warmingQuery() default ""; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/CacheTuning.java b/src/main/java/com/avaje/ebean/annotation/CacheTuning.java index 2e5f5065d..4b5924e30 100644 --- a/src/main/java/com/avaje/ebean/annotation/CacheTuning.java +++ b/src/main/java/com/avaje/ebean/annotation/CacheTuning.java @@ -44,4 +44,4 @@ public @interface CacheTuning { *

*/ int maxSecsToLive() default 0; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/CreatedTimestamp.java b/src/main/java/com/avaje/ebean/annotation/CreatedTimestamp.java index abb89788b..31319f02c 100644 --- a/src/main/java/com/avaje/ebean/annotation/CreatedTimestamp.java +++ b/src/main/java/com/avaje/ebean/annotation/CreatedTimestamp.java @@ -28,4 +28,4 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) public @interface CreatedTimestamp { -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/EmbeddedColumns.java b/src/main/java/com/avaje/ebean/annotation/EmbeddedColumns.java index 88feaca5c..5a68edbac 100644 --- a/src/main/java/com/avaje/ebean/annotation/EmbeddedColumns.java +++ b/src/main/java/com/avaje/ebean/annotation/EmbeddedColumns.java @@ -28,4 +28,4 @@ public @interface EmbeddedColumns { */ String columns() default ""; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/Encrypted.java b/src/main/java/com/avaje/ebean/annotation/Encrypted.java index a0999f817..a803ddc0a 100644 --- a/src/main/java/com/avaje/ebean/annotation/Encrypted.java +++ b/src/main/java/com/avaje/ebean/annotation/Encrypted.java @@ -21,4 +21,4 @@ public @interface Encrypted { * Used to specify the DB column length. */ int dbLength() default 0; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/EnumMapping.java b/src/main/java/com/avaje/ebean/annotation/EnumMapping.java index 617c052f9..fd7b60e52 100644 --- a/src/main/java/com/avaje/ebean/annotation/EnumMapping.java +++ b/src/main/java/com/avaje/ebean/annotation/EnumMapping.java @@ -87,4 +87,4 @@ public @interface EnumMapping { * The length of DB column if mapping to string values. */ int length() default 0; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/EnumValue.java b/src/main/java/com/avaje/ebean/annotation/EnumValue.java index 9d39d3aaa..8c87186f3 100644 --- a/src/main/java/com/avaje/ebean/annotation/EnumValue.java +++ b/src/main/java/com/avaje/ebean/annotation/EnumValue.java @@ -43,4 +43,4 @@ public @interface EnumValue { *

*/ String value(); -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/Expose.java b/src/main/java/com/avaje/ebean/annotation/Expose.java index a81c6bf51..829540724 100644 --- a/src/main/java/com/avaje/ebean/annotation/Expose.java +++ b/src/main/java/com/avaje/ebean/annotation/Expose.java @@ -12,17 +12,17 @@ import java.lang.annotation.Target; @Target(ElementType.FIELD) public @interface Expose { - /** - * If {@code true}, the field marked with this annotation is written out in the JSON while - * serializing. If {@code false}, the field marked with this annotation is skipped from the - * serialized output. Defaults to {@code true}. - */ - public boolean serialize() default true; + /** + * If {@code true}, the field marked with this annotation is written out in the JSON while + * serializing. If {@code false}, the field marked with this annotation is skipped from the + * serialized output. Defaults to {@code true}. + */ + boolean serialize() default true; - /** - * If {@code true}, the field marked with this annotation is deserialized from the JSON. - * If {@code false}, the field marked with this annotation is skipped during deserialization. - * Defaults to {@code true}. - */ - public boolean deserialize() default true; + /** + * If {@code true}, the field marked with this annotation is deserialized from the JSON. + * If {@code false}, the field marked with this annotation is skipped during deserialization. + * Defaults to {@code true}. + */ + boolean deserialize() default true; } \ No newline at end of file diff --git a/src/main/java/com/avaje/ebean/annotation/Formula.java b/src/main/java/com/avaje/ebean/annotation/Formula.java index a512b90f4..59f90ce91 100644 --- a/src/main/java/com/avaje/ebean/annotation/Formula.java +++ b/src/main/java/com/avaje/ebean/annotation/Formula.java @@ -100,4 +100,4 @@ public @interface Formula { */ String join() default ""; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/Index.java b/src/main/java/com/avaje/ebean/annotation/Index.java index 96e0491f6..5ea6d1b50 100644 --- a/src/main/java/com/avaje/ebean/annotation/Index.java +++ b/src/main/java/com/avaje/ebean/annotation/Index.java @@ -14,11 +14,11 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) public @interface Index { - /** - * Name of the index - * - * @return index name - */ - String value() default ""; + /** + * Name of the index + * + * @return index name + */ + String value() default ""; } diff --git a/src/main/java/com/avaje/ebean/annotation/NamedUpdate.java b/src/main/java/com/avaje/ebean/annotation/NamedUpdate.java index ccc614eb4..0f1a47cde 100644 --- a/src/main/java/com/avaje/ebean/annotation/NamedUpdate.java +++ b/src/main/java/com/avaje/ebean/annotation/NamedUpdate.java @@ -34,4 +34,4 @@ public @interface NamedUpdate { */ boolean notifyCache() default true; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/NamedUpdates.java b/src/main/java/com/avaje/ebean/annotation/NamedUpdates.java index 8b9daf804..3a8992604 100644 --- a/src/main/java/com/avaje/ebean/annotation/NamedUpdates.java +++ b/src/main/java/com/avaje/ebean/annotation/NamedUpdates.java @@ -17,4 +17,4 @@ public @interface NamedUpdates { */ NamedUpdate[] value(); -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/PrivateOwned.java b/src/main/java/com/avaje/ebean/annotation/PrivateOwned.java index 719add194..684f5a416 100644 --- a/src/main/java/com/avaje/ebean/annotation/PrivateOwned.java +++ b/src/main/java/com/avaje/ebean/annotation/PrivateOwned.java @@ -31,4 +31,4 @@ public @interface PrivateOwned { */ boolean cascadeRemove() default true; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/Sql.java b/src/main/java/com/avaje/ebean/annotation/Sql.java index 71f776350..a82815d22 100644 --- a/src/main/java/com/avaje/ebean/annotation/Sql.java +++ b/src/main/java/com/avaje/ebean/annotation/Sql.java @@ -21,4 +21,4 @@ public @interface Sql { */ SqlSelect[] select() default { @SqlSelect }; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/SqlSelect.java b/src/main/java/com/avaje/ebean/annotation/SqlSelect.java index 218b35cb5..7b5e12b4a 100644 --- a/src/main/java/com/avaje/ebean/annotation/SqlSelect.java +++ b/src/main/java/com/avaje/ebean/annotation/SqlSelect.java @@ -295,4 +295,4 @@ public @interface SqlSelect { * Set this to true to have debug output when Ebean parses the sql-select. */ boolean debug() default false; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/Transactional.java b/src/main/java/com/avaje/ebean/annotation/Transactional.java index a6eb1b18b..336313dbe 100644 --- a/src/main/java/com/avaje/ebean/annotation/Transactional.java +++ b/src/main/java/com/avaje/ebean/annotation/Transactional.java @@ -125,4 +125,4 @@ public @interface Transactional { */ Class[] noRollbackFor() default {}; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/UpdateMode.java b/src/main/java/com/avaje/ebean/annotation/UpdateMode.java index ddb4d8ef0..f051262a8 100644 --- a/src/main/java/com/avaje/ebean/annotation/UpdateMode.java +++ b/src/main/java/com/avaje/ebean/annotation/UpdateMode.java @@ -31,4 +31,4 @@ public @interface UpdateMode { */ boolean updateChangesOnly() default true; -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/UpdatedTimestamp.java b/src/main/java/com/avaje/ebean/annotation/UpdatedTimestamp.java index 3082faa10..21118848b 100644 --- a/src/main/java/com/avaje/ebean/annotation/UpdatedTimestamp.java +++ b/src/main/java/com/avaje/ebean/annotation/UpdatedTimestamp.java @@ -13,4 +13,4 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) public @interface UpdatedTimestamp { -}; +} diff --git a/src/main/java/com/avaje/ebean/annotation/Where.java b/src/main/java/com/avaje/ebean/annotation/Where.java index 77b3c330a..c09b7665d 100644 --- a/src/main/java/com/avaje/ebean/annotation/Where.java +++ b/src/main/java/com/avaje/ebean/annotation/Where.java @@ -48,4 +48,4 @@ public @interface Where { */ String clause(); -}; +}