bengbengbalabalabeng opened a new pull request, #1012:
URL: https://github.com/apache/fesod/pull/1012

   ## Purpose of the pull request
   
   Unify the code style of all example code blocks in the documentation to 
follow a consistent `JEP-512` (Compact Source Files and Instance Main Methods) 
pattern, replacing the previously varied `@Test` method styles.
   
   ## What's changed?
   
   - Before:
   
   ```java
   // Style 1
   public static void main(String[] args) {
       // .....
   }
   
   // Style 2
   @Test
   void readAndWrite() {
       // ......
   }
   ```
   
   - After:
   
   ```java
   void main {
       // ......
   }
   ```
   
   
   ## Checklist
   
   - [x] I have read the [Contributor 
Guide](https://fesod.apache.org/community/contribution/).
   - [x] I have written the necessary doc or comment.
   - [x] I have added the necessary unit tests and all cases have passed.
   


-- 
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