mathieux51 commented on pull request #1204:
URL: 
https://github.com/apache/camel-kafka-connector/pull/1204#issuecomment-867346738


   @oscerd Looks like formatting issues. I used the following to format the 
code:
   ```bash
   function java_fmt {
     java \
     --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
     --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
     --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
     --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
     --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED \
     -jar ~/.local/bin/google-java-format-1.10.0-all-deps.jar \
     --replace \
     "$1"
   }
   
   function java_fmt_recursive {
     for i in $(find . -name '*.java'); do java_fmt "$i"; done
   }
   ```
   
   What should I use instead to make the build happy?


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

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to