Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomTannenbaum committed Oct 2, 2024
1 parent 6154f84 commit a674229
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
<executions>
<execution>
<goals>
<goal>apply</goal> <!-- Automatically apply the formatting -->
<goal>apply</goal>
</goals>
</execution>
</executions>
Expand All @@ -223,14 +223,13 @@
</formats>
<java>
<eclipse>
<version>4.26</version> <!-- optional version of Eclipse Formatter -->
<file>${project.basedir}/src/main/resources/formatting.xml</file> <!-- optional -->
<version>4.26</version>
<file>${project.basedir}/src/main/resources/formatting.xml</file>
</eclipse>
<removeUnusedImports />
<importOrder> <!-- or a custom ordering -->
<order>java|javax,ch.puzzle,org,com,com.diffplug,,\#com.diffplug,\#</order> <!-- or use <file>${project.basedir}/eclipse.importorder</file> -->
<!-- you can use an empty string for all the imports you didn't specify explicitly, '|' to join group without blank line, and '\#` prefix for static imports. -->
<semanticSort>true</semanticSort> <!-- Optional, default false. Sort by package, then class, then member (for static imports). Splitting is based on common conventions (packages are lower case, classes start with upper case). Use <treatAsPackage> and <treatAsClass> for exceptions. -->
<importOrder>
<order>java|javax,ch.puzzle,org,com,com.diffplug,,\#com.diffplug,\#</order>
<semanticSort>true</semanticSort>
</importOrder>
<formatAnnotations />
</java>
Expand Down

0 comments on commit a674229

Please sign in to comment.