Skip to content

Commit 7da7c1b

Browse files
committed
Reformat using spotless
1 parent 539c8ba commit 7da7c1b

File tree

43 files changed

+5826
-8183
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+5826
-8183
lines changed

pom.xml

Lines changed: 5 additions & 5 deletions
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

@@ -34,8 +32,8 @@ limitations under the License.
3432
<scm>
3533
<connection>scm:git:git@github.com:codehaus-plexus/plexus-xml.git</connection>
3634
<developerConnection>scm:git:git@github.com:codehaus-plexus/plexus-xml.git</developerConnection>
37-
<url>http://github.com/codehaus-plexus/plexus-xml</url>
3835
<tag>3.x</tag>
36+
<url>http://github.com/codehaus-plexus/plexus-xml</url>
3937
</scm>
4038
<issueManagement>
4139
<system>github</system>
@@ -144,15 +142,17 @@ limitations under the License.
144142
<groupId>org.apache.maven.plugins</groupId>
145143
<artifactId>maven-scm-publish-plugin</artifactId>
146144
<configuration>
147-
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
145+
<content>${project.reporting.outputDirectory}</content>
146+
<!-- mono-module doesn't require site:stage -->
148147
</configuration>
149148
<executions>
150149
<execution>
151150
<id>scm-publish</id>
152-
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
151+
<!-- deploy site with maven-scm-publish-plugin -->
153152
<goals>
154153
<goal>publish-scm</goal>
155154
</goals>
155+
<phase>site-deploy</phase>
156156
</execution>
157157
</executions>
158158
</plugin>

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

Lines changed: 6 additions & 11 deletions
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)