JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / org / json / JSONPropertyName.java
index a1bcd58..7b558f9 100644 (file)
@@ -33,15 +33,16 @@ import java.lang.annotation.Target;
 
 @Documented
 @Retention(RUNTIME)
-@Target({METHOD})
+@Target({ METHOD })
 /**
- * Use this annotation on a getter method to override the Bean name
- * parser for Bean -&gt; JSONObject mapping. A value set to empty string <code>""</code>
+ * Use this annotation on a getter method to override the Bean name parser for
+ * Bean -&gt; JSONObject mapping. A value set to empty string <code>""</code>
  * will have the Bean parser fall back to the default field name processing.
  */
-public @interface JSONPropertyName {
-    /**
-     * @return The name of the property as to be used in the JSON Object.
-     */
-    String value();
+public @interface JSONPropertyName
+{
+  /**
+   * @return The name of the property as to be used in the JSON Object.
+   */
+  String value();
 }