Copilot commented on code in PR #695:
URL: https://github.com/apache/fesod/pull/695#discussion_r2541500203


##########
fesod-examples/src/test/java/org/apache/fesod/sheet/demo/write/WriteTest.java:
##########
@@ -515,15 +518,15 @@ public void handlerStyleWrite() {
                 new HorizontalCellStyleStrategy(headWriteCellStyle, 
contentWriteCellStyle);
 
         // 这里 需要指定写用哪个class去写,然后写到第一个sheet,名字为模板 然后文件流会自动关闭
-        FastExcel.write(fileName, DemoData.class)
+        FesodSheet.write(fileName, DemoData.class)
                 .registerWriteHandler(horizontalCellStyleStrategy)
                 .sheet("模板")
                 .doWrite(data());
 
         // 方法2: 使用FastExcel的方式完全自己写 不太推荐 尽量使用已有策略

Review Comment:
   This comment still references "FastExcel" but should be updated to "Fesod" 
or "FesodSheet" for consistency with the refactoring. The comment should read: 
"方法2: 使用Fesod的方式完全自己写 不太推荐 尽量使用已有策略" or "方法2: 使用FesodSheet的方式完全自己写 不太推荐 
尽量使用已有策略"
   ```suggestion
           // 方法2: 使用FesodSheet的方式完全自己写 不太推荐 尽量使用已有策略
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to