JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / org / json / simple / JSONStreamAware.java
index ab63b3e..514cd61 100644 (file)
@@ -4,12 +4,15 @@ import java.io.IOException;
 import java.io.Writer;
 
 /**
- * Beans that support customized output of JSON text to a writer shall implement this interface.  
+ * Beans that support customized output of JSON text to a writer shall implement
+ * this interface.
+ * 
  * @author FangYidong<fangyidong@yahoo.com.cn>
  */
-public interface JSONStreamAware {
-       /**
-        * write JSON string to out.
-        */
-       void writeJSONString(Writer out) throws IOException;
+public interface JSONStreamAware
+{
+  /**
+   * write JSON string to out.
+   */
+  void writeJSONString(Writer out) throws IOException;
 }