printStackTrace() 주석 처리
This commit is contained in:
@@ -47,13 +47,13 @@ public class JsonReader implements StandardReader {
|
|||||||
try {
|
try {
|
||||||
parser = factory.createParser(jsonString);
|
parser = factory.createParser(jsonString);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
//e.printStackTrace();
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
jsonNode = mapper.readTree(parser);
|
jsonNode = mapper.readTree(parser);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
//e.printStackTrace();
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user