Implement Flushable.

This commit is contained in:
Jesse Wilson 2012-06-30 02:46:26 +00:00
parent dc4e43bb23
commit 1c7aee40f3

View File

@ -17,6 +17,7 @@
package com.google.gson.stream; package com.google.gson.stream;
import java.io.Closeable; import java.io.Closeable;
import java.io.Flushable;
import java.io.IOException; import java.io.IOException;
import java.io.Writer; import java.io.Writer;
import java.util.ArrayList; import java.util.ArrayList;
@ -120,7 +121,7 @@ import java.util.List;
* @author Jesse Wilson * @author Jesse Wilson
* @since 1.6 * @since 1.6
*/ */
public class JsonWriter implements Closeable { public class JsonWriter implements Closeable, Flushable {
/* /*
* From RFC 4627, "All Unicode characters may be placed within the * From RFC 4627, "All Unicode characters may be placed within the