Author: tcurdt
Date: Thu Jul 10 14:36:43 2008
New Revision: 675770
URL: http://svn.apache.org/viewvc?rev=675770&view=rev
Log:
fixed line endings,
fixed missing license headers,
removed author tags and useless comments
Modified:
commons/sandbox/compress/branches/redesign/pom.xml
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
(props changed)
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/archivers/zip/ZipEntry.java
(props changed)
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/Change.java
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/DeleteChange.java
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorException.java
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java
commons/sandbox/compress/branches/redesign/src/main/resources/test1.xml
commons/sandbox/compress/branches/redesign/src/main/resources/test2.xml
commons/sandbox/compress/branches/redesign/src/site/site.xml
commons/sandbox/compress/branches/redesign/src/site/xdoc/index.xml
commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/archivers/memory/MemoryArchiveTestCase.java
commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/changes/ChangeWorkerTest.java
commons/sandbox/compress/branches/redesign/src/test/resources/test1.xml
(contents, props changed)
commons/sandbox/compress/branches/redesign/src/test/resources/test2.xml
(contents, props changed)
Modified: commons/sandbox/compress/branches/redesign/pom.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/pom.xml?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
--- commons/sandbox/compress/branches/redesign/pom.xml (original)
+++ commons/sandbox/compress/branches/redesign/pom.xml Thu Jul 10 14:36:43 2008
@@ -1,3 +1,21 @@
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
Propchange:
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/archivers/zip/ZipEntry.java
------------------------------------------------------------------------------
svn:eol-style = native
Modified:
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/Change.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/Change.java?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
---
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/Change.java
(original)
+++
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/Change.java
Thu Jul 10 14:36:43 2008
@@ -1,14 +1,25 @@
-/**
- *
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
*/
package org.apache.commons.compress.changes;
import org.apache.commons.compress.archivers.ArchiveInputStream;
-/**
- * @author Cy
- *
- */
interface Change {
// public void perform(ArchiveInputStream input);
public int type();
Modified:
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/DeleteChange.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/DeleteChange.java?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
---
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/DeleteChange.java
(original)
+++
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/changes/DeleteChange.java
Thu Jul 10 14:36:43 2008
@@ -1,5 +1,20 @@
-/**
- *
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
*/
package org.apache.commons.compress.changes;
Modified:
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorException.java?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
---
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorException.java
(original)
+++
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorException.java
Thu Jul 10 14:36:43 2008
@@ -1,13 +1,25 @@
-/**
- *
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
*/
package org.apache.commons.compress.compressors;
-/**
- *
- */
public class CompressorException extends Exception {
- /* Serial */
+
private static final long serialVersionUID = -2770299103090672278L;
public CompressorException() {
Modified:
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
---
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java
(original)
+++
commons/sandbox/compress/branches/redesign/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java
Thu Jul 10 14:36:43 2008
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
package org.apache.commons.compress.compressors;
import java.io.InputStream;
Modified:
commons/sandbox/compress/branches/redesign/src/main/resources/test1.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/main/resources/test1.xml?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
--- commons/sandbox/compress/branches/redesign/src/main/resources/test1.xml
(original)
+++ commons/sandbox/compress/branches/redesign/src/main/resources/test1.xml Thu
Jul 10 14:36:43 2008
@@ -1,19 +1,2 @@
-<?xml version = '1.0'?>
-<!DOCTYPE connections>
-<connections>
-<<<<<<< HEAD:testdata/test.xml
-=======
- as
->>>>>>> 75cb63ff7005344589b57d17338b64783f8f430c:testdata/test.xml
- <connection>
- <JDBC_PORT>1521</JDBC_PORT>
- <HOSTNAME>10.248.40.111</HOSTNAME>
- <ConnectionType>JDBC</ConnectionType>
- <DeployPassword>false</DeployPassword>
- <user>appsrv</user>
- <ConnectionName>Dev-DB</ConnectionName>
- <SID>O10gIN1</SID>
- <JdbcDriver>oracle.jdbc.driver.OracleDriver</JdbcDriver>
- <ORACLE_JDBC_TYPE>thin</ORACLE_JDBC_TYPE>
- </connection>
-</connections>
+<?xml version="1.0"?>
+<empty/>
\ No newline at end of file
Modified:
commons/sandbox/compress/branches/redesign/src/main/resources/test2.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/main/resources/test2.xml?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
--- commons/sandbox/compress/branches/redesign/src/main/resources/test2.xml
(original)
+++ commons/sandbox/compress/branches/redesign/src/main/resources/test2.xml Thu
Jul 10 14:36:43 2008
@@ -1,5 +1,2 @@
-<?xml version = '1.0'?>
-<!DOCTYPE connections>
-<meinxml>
- <leer />
-</meinxml>
+<?xml version="1.0"?>
+<empty/>
Modified: commons/sandbox/compress/branches/redesign/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/site/site.xml?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
--- commons/sandbox/compress/branches/redesign/src/site/site.xml (original)
+++ commons/sandbox/compress/branches/redesign/src/site/site.xml Thu Jul 10
14:36:43 2008
@@ -1,4 +1,22 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
<project name="Commons Compress">
<bannerRight>
Modified: commons/sandbox/compress/branches/redesign/src/site/xdoc/index.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/site/xdoc/index.xml?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
--- commons/sandbox/compress/branches/redesign/src/site/xdoc/index.xml
(original)
+++ commons/sandbox/compress/branches/redesign/src/site/xdoc/index.xml Thu Jul
10 14:36:43 2008
@@ -1,55 +1,69 @@
<?xml version="1.0"?>
+<!--
-<document>
-
- <properties>
- <title>Overview</title>
- <author email="[EMAIL PROTECTED]">Commons Documentation Team</author>
- </properties>
-
- <body>
-
-<section name="Commons Compress">
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
-<p>
-Commons Compress defines an API for working with tar, zip and bzip2 files.
-</p>
-<p>
-The code in this component came from Avalon's Excalibur, but originally from
Ant,
-as far as life in Apache goes. The tar package is originally Tim Endres' public
-domain package. The bzip2 package is based on the work done by Keiron Liddle.
-It has migrated via:<br />
-Ant -> Avalon-Excalibur -> Commons-IO -> Commons-Compress.
-</p>
-<subsection name="Status">
-<ul>
- <li>This code is in the commons <i>sandbox</i></li>
- <li>The code is unreleased</li>
- <li>Methods and classes can and will appear and disappear without
warning</li>
- <li>If you like the code and want to push it towards a release, join the
mailing list!</li>
-</ul>
-</subsection>
-</section>
-
-<section name="Documentation">
-<ul>
- <li>The <a href="apidocs/index.html">Javadoc</a> of the latest SVN</li>
- <li>The <a href="http://svn.apache.org/viewvc/commons/sandbox/compress/">SVN
repository</a> can be browsed.</li>
-</ul>
-<p>
-There are also 2 example for the bzip2 API:
-</p>
-<ul>
- <li><a
href="xref-test/org/apache/commons/compress/bzip2/example/Bzip2Compress.html">Bzip2Compress</a></li>
- <li><a
href="xref-test/org/apache/commons/compress/bzip2/example/Bzip2Uncompress.html">Bzip2UnCompress</a></li>
-</ul>
-</section>
-
-<section name="Releases">
-<p>
-None. This is a <i>sandbox</i> component.
-</p>
-</section>
-
-</body>
+-->
+<document>
+ <properties>
+ <title>Overview</title>
+ <author email="[EMAIL PROTECTED]">Commons Documentation Team</author>
+ </properties>
+ <body>
+ <section name="Commons Compress">
+ <p>
+ Commons Compress defines an API for working with tar, zip and
bzip2 files.
+ </p>
+ <p>
+ The code in this component came from Avalon's Excalibur, but
originally from Ant,
+ as far as life in Apache goes. The tar package is originally
Tim Endres' public
+ domain package. The bzip2 package is based on the work done by
Keiron Liddle.
+ It has migrated via:<br/>
+ Ant -> Avalon-Excalibur -> Commons-IO ->
Commons-Compress.
+ </p>
+ <subsection name="Status">
+ <ul>
+ <li>This code is in the commons <i>sandbox</i></li>
+ <li>The code is unreleased</li>
+ <li>Methods and classes can and will appear and disappear
without warning</li>
+ <li>If you like the code and want to push it towards a
release, join the mailing list!</li>
+ </ul>
+ </subsection>
+ </section>
+ <section name="Documentation">
+ <ul>
+ <li>The <a href="apidocs/index.html">Javadoc</a> of the latest
SVN</li>
+ <li>The <a
href="http://svn.apache.org/viewvc/commons/sandbox/compress/">SVN
repository</a> can be browsed.</li>
+ </ul>
+ <p>
+ There are also 2 example for the bzip2 API:
+ </p>
+ <ul>
+ <li>
+ <a
href="xref-test/org/apache/commons/compress/bzip2/example/Bzip2Compress.html">Bzip2Compress</a>
+ </li>
+ <li>
+ <a
href="xref-test/org/apache/commons/compress/bzip2/example/Bzip2Uncompress.html">Bzip2UnCompress</a>
+ </li>
+ </ul>
+ </section>
+ <section name="Releases">
+ <p>
+ None. This is a <i>sandbox</i> component.
+ </p>
+ </section>
+ </body>
</document>
Modified:
commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/archivers/memory/MemoryArchiveTestCase.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/archivers/memory/MemoryArchiveTestCase.java?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
---
commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/archivers/memory/MemoryArchiveTestCase.java
(original)
+++
commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/archivers/memory/MemoryArchiveTestCase.java
Thu Jul 10 14:36:43 2008
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
package org.apache.commons.compress.archivers.memory;
import java.io.IOException;
Modified:
commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/changes/ChangeWorkerTest.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/changes/ChangeWorkerTest.java?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
---
commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/changes/ChangeWorkerTest.java
(original)
+++
commons/sandbox/compress/branches/redesign/src/test/java/org/apache/commons/compress/changes/ChangeWorkerTest.java
Thu Jul 10 14:36:43 2008
@@ -1,5 +1,20 @@
-/**
- *
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
*/
package org.apache.commons.compress.changes;
@@ -13,17 +28,11 @@
import org.apache.commons.compress.archivers.ArchiveInputStream;
import org.apache.commons.compress.archivers.memory.MemoryArchiveInputStream;
import org.apache.commons.compress.archivers.*;
-/**
- * @author Cy
- *
- */
+
public class ChangeWorkerTest extends TestCase {
final ArchiveInputStream is = null;
- /* (non-Javadoc)
- * @see junit.framework.TestCase#setUp()
- */
protected void setUp() throws Exception {
super.setUp();
final ArchiveInputStream is = new MemoryArchiveInputStream(new
String[][] {
@@ -36,16 +45,10 @@
});
}
- /* (non-Javadoc)
- * @see junit.framework.TestCase#tearDown()
- */
protected void tearDown() throws Exception {
super.tearDown();
}
- /**
- * Test method for [EMAIL PROTECTED]
org.apache.commons.compress.changes.ChangeWorker#perform(org.apache.commons.compress.changes.ChangeSet,
java.io.InputStream, java.io.OutputStream)}.
- */
public void testPerform() throws Exception {
ChangeSet changes = new ChangeSet();
changes.delete("test2.xml");
Modified:
commons/sandbox/compress/branches/redesign/src/test/resources/test1.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/test/resources/test1.xml?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
--- commons/sandbox/compress/branches/redesign/src/test/resources/test1.xml
(original)
+++ commons/sandbox/compress/branches/redesign/src/test/resources/test1.xml Thu
Jul 10 14:36:43 2008
@@ -1,19 +1,4 @@
<?xml version = '1.0'?>
<!DOCTYPE connections>
<connections>
-<<<<<<< HEAD:testdata/test.xml
-=======
- as
->>>>>>> 75cb63ff7005344589b57d17338b64783f8f430c:testdata/test.xml
- <connection>
- <JDBC_PORT>1521</JDBC_PORT>
- <HOSTNAME>10.248.40.111</HOSTNAME>
- <ConnectionType>JDBC</ConnectionType>
- <DeployPassword>false</DeployPassword>
- <user>appsrv</user>
- <ConnectionName>Dev-DB</ConnectionName>
- <SID>O10gIN1</SID>
- <JdbcDriver>oracle.jdbc.driver.OracleDriver</JdbcDriver>
- <ORACLE_JDBC_TYPE>thin</ORACLE_JDBC_TYPE>
- </connection>
</connections>
Propchange:
commons/sandbox/compress/branches/redesign/src/test/resources/test1.xml
------------------------------------------------------------------------------
svn:eol-style = native
Modified:
commons/sandbox/compress/branches/redesign/src/test/resources/test2.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/compress/branches/redesign/src/test/resources/test2.xml?rev=675770&r1=675769&r2=675770&view=diff
==============================================================================
--- commons/sandbox/compress/branches/redesign/src/test/resources/test2.xml
(original)
+++ commons/sandbox/compress/branches/redesign/src/test/resources/test2.xml Thu
Jul 10 14:36:43 2008
@@ -1,5 +1,5 @@
-<?xml version = '1.0'?>
-<!DOCTYPE connections>
-<meinxml>
- <leer />
+<?xml version = '1.0'?>
+<!DOCTYPE connections>
+<meinxml>
+ <leer />
</meinxml>
Propchange:
commons/sandbox/compress/branches/redesign/src/test/resources/test2.xml
------------------------------------------------------------------------------
svn:eol-style = native