代码错误注释还原

This commit is contained in:
gaoqr
2026-06-12 10:45:21 +08:00
parent e689f0a35d
commit 9ac83e631d
@@ -135,9 +135,8 @@ public class WebCadOrderImportServiceImpl implements WebCadOrderImportService {
JsonFactory factory = new JsonFactory();
Long cadViewFileId;
try (
// GZIPInputStream gzipInputStream = new GZIPInputStream();
JsonParser parser = factory.createParser(file.getInputStream())) {
try (GZIPInputStream gzipInputStream = new GZIPInputStream(file.getInputStream());
JsonParser parser = factory.createParser(gzipInputStream)) {
factory.disable(JsonParser.Feature.AUTO_CLOSE_SOURCE);
int plateCount = 0;