Skip to content

Commit 17787e5

Browse files
committed
Reformat using spotless
1 parent d58719d commit 17787e5

40 files changed

+5616
-7820
lines changed

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<!--
43
Copyright The Codehaus Foundation.
54
@@ -15,7 +14,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1514
See the License for the specific language governing permissions and
1615
limitations under the License.
1716
-->
18-
1917
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2018
<modelVersion>4.0.0</modelVersion>
2119

@@ -143,15 +141,17 @@ limitations under the License.
143141
<groupId>org.apache.maven.plugins</groupId>
144142
<artifactId>maven-scm-publish-plugin</artifactId>
145143
<configuration>
146-
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
144+
<content>${project.reporting.outputDirectory}</content>
145+
<!-- mono-module doesn't require site:stage -->
147146
</configuration>
148147
<executions>
149148
<execution>
150149
<id>scm-publish</id>
151-
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
150+
<!-- deploy site with maven-scm-publish-plugin -->
152151
<goals>
153152
<goal>publish-scm</goal>
154153
</goals>
154+
<phase>site-deploy</phase>
155155
</execution>
156156
</executions>
157157
</plugin>

src/main/java/org/codehaus/plexus/util/xml/CompactXMLWriter.java

+6-11
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,18 @@
2222
/**
2323
*
2424
*/
25-
public class CompactXMLWriter
26-
extends PrettyPrintXMLWriter
27-
{
25+
public class CompactXMLWriter extends PrettyPrintXMLWriter {
2826

29-
public CompactXMLWriter( PrintWriter writer )
30-
{
31-
super( writer );
27+
public CompactXMLWriter(PrintWriter writer) {
28+
super(writer);
3229
}
3330

34-
public CompactXMLWriter( Writer writer )
35-
{
36-
super( writer );
31+
public CompactXMLWriter(Writer writer) {
32+
super(writer);
3733
}
3834

3935
@Override
40-
protected void endOfLine()
41-
{
36+
protected void endOfLine() {
4237
// override parent: don't write anything at end of line
4338
}
4439
}

0 commit comments

Comments
 (0)