delei commented on code in PR #688:
URL: https://github.com/apache/fesod/pull/688#discussion_r2529706766
##########
fesod/src/main/java/org/apache/fesod/sheet/FesodSheet.java:
##########
@@ -19,7 +19,315 @@
package org.apache.fesod.sheet;
+import java.io.File;
+import java.io.InputStream;
+import java.io.OutputStream;
+import org.apache.fesod.sheet.read.builder.ExcelReaderBuilder;
+import org.apache.fesod.sheet.read.builder.ExcelReaderSheetBuilder;
+import org.apache.fesod.sheet.read.listener.ReadListener;
+import org.apache.fesod.sheet.write.builder.ExcelWriterBuilder;
+import org.apache.fesod.sheet.write.builder.ExcelWriterSheetBuilder;
+import org.apache.fesod.sheet.write.builder.ExcelWriterTableBuilder;
+
/**
- * This is actually {@link FesodSheetFactory}, and short names look better.
+ * Core classes of the Fesod spreadsheet processor
*/
-public class FesodSheet extends FesodSheetFactory {}
+public class FesodSheet {
Review Comment:
Ensure a single core class. In fact, these two types are not much different
and they can also avoid some of the checks and prompts in the IDE.
--
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]