kaijchen opened a new issue, #54:
URL: https://github.com/apache/incubator-uniffle/issues/54

   There are 2 indentation styles in the current code base. Which are mostly 
the same except for line wrapping.
   It would be better to have it unified early. How do you think?
   
   ### 4 spaces for line wrapping
   
   ```java
   public static void main(String[] args)
       throws Exception {
     for (int i = 0; i < args.length; i++) {
       System.out.println("Greeting the " + i +
           "-th argument");
       System.out.println("hello, " + args[i]);
     }
   }
   ```
   
   ### 2 spaces for line wrapping
   
   ```java
   public static void main(String[] args)
     throws Exception {
     for (int i = 0; i < args.length; i++) {
       System.out.println("Greeting the " + i +
         "-th argument");
       System.out.println("hello, " + args[i]);
     }
   }
   ```


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

Reply via email to