printStackTrace() 주석 처리

This commit is contained in:
curry772
2026-08-13 15:07:21 +09:00
parent 398c26537f
commit 23bdca4777
@@ -47,13 +47,13 @@ public class JsonReader implements StandardReader {
try {
parser = factory.createParser(jsonString);
} catch (IOException e) {
e.printStackTrace();
//e.printStackTrace();
throw e;
}
try {
jsonNode = mapper.readTree(parser);
} catch (IOException e) {
e.printStackTrace();
//e.printStackTrace();
throw e;
}