sgzwiz / jsonplugin

Automatically exported from code.google.com/p/jsonplugin
0 stars 1 forks source link

JSONUtil compatibility #70

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
0.19
{{{
public static void writeJSONToResponse(HttpServletResponse response, 
String encoding, boolean wrapWithComments, String serializedJSON, boolean 
smd, boolean gzip, boolean noCache) throws IOException {
......
}
}}}
0.31
{{{
public static void writeJSONToResponse(HttpServletResponse response, 
String encoding, boolean wrapWithComments, String serializedJSON, boolean 
smd, boolean gzip, boolean noCache) throws IOException {
......
}
}}}

What is the expected output? What do you see instead?
JSONUtil 0.33 add adapter method:
{{{
public static void writeJSONToResponse(HttpServletResponse response, 
String encoding, boolean wrapWithComments, String serializedJSON, boolean 
smd, boolean gzip, boolean noCache) throws IOException {
writeJSONToResponse(response, encoding, wrapWithComments, serializedJSON, 
smd, false, false);
}
}}}

What version of the product are you using? On what operating system?
0.19 to 0.31

Original issue reported on code.google.com by liangfei...@gmail.com on 14 Nov 2008 at 10:42

GoogleCodeExporter commented 9 years ago
This plugins does not exposes an API. We try to make it easy for people to 
extend it,
but keeping backward compatible interfaces is not a goal.

Original comment by musa...@gmail.com on 27 Nov 2008 at 5:15