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 { 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;
} }