Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Oct 12, 2023
1 parent 96a7dd3 commit 68f90b3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,13 @@ public abstract JsonParser createParser(char[] content, int offset, int len)
/**********************************************************************
*/

public abstract JsonGenerator createGenerator(DataOutput out, JsonEncoding enc) throws IOException;
public abstract JsonGenerator createGenerator(DataOutput out, JsonEncoding enc)
throws IOException;
public abstract JsonGenerator createGenerator(DataOutput out) throws IOException;
public abstract JsonGenerator createGenerator(File f, JsonEncoding enc) throws IOException;
public abstract JsonGenerator createGenerator(OutputStream out) throws IOException;
public abstract JsonGenerator createGenerator(OutputStream out, JsonEncoding enc) throws IOException;
public abstract JsonGenerator createGenerator(OutputStream out, JsonEncoding enc)
throws IOException;
public abstract JsonGenerator createGenerator(Writer w) throws IOException;

/*
Expand Down

0 comments on commit 68f90b3

Please sign in to comment.