We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24cb4ca commit e136da4Copy full SHA for e136da4
1 file changed
src/main/java/com/aspose/barcode/cloud/JSON.java
@@ -118,8 +118,6 @@ public <T> T deserialize(String body, Type returnType) {
118
try {
119
if (isLenientOnJson) {
120
JsonReader jsonReader = new JsonReader(new StringReader(body));
121
- // see
122
- // https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/stream/JsonReader.html#setLenient(boolean)
123
jsonReader.setLenient(true);
124
return gson.fromJson(jsonReader, returnType);
125
} else {
0 commit comments