Skip to content

Commit 43c78f1

Browse files
committed
refactor: git --renormalize files for line endings
1 parent 0e58d46 commit 43c78f1

142 files changed

Lines changed: 15114 additions & 15114 deletions

File tree

Some content is hidden

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

assembly.xml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
<assembly>
2-
<id>prj</id>
3-
<formats>
4-
<format>tar.gz</format>
5-
<format>zip</format>
6-
</formats>
7-
<includeBaseDirectory>false</includeBaseDirectory>
8-
<fileSets>
9-
<fileSet>
10-
<includes>
11-
<include>README*</include>
12-
<include>LICENSE*</include>
13-
<include>NOTICE*</include>
14-
<include>pom.xml</include>
15-
</includes>
16-
</fileSet>
17-
<fileSet>
18-
<directory>src</directory>
19-
</fileSet>
20-
<fileSet>
21-
<directory>target/site</directory>
22-
<outputDirectory>doc</outputDirectory>
23-
</fileSet>
24-
<fileSet>
25-
<directory>target</directory>
26-
<outputDirectory></outputDirectory>
27-
<includes>
28-
<include>${artifactId}-${version}.jar</include>
29-
</includes>
30-
</fileSet>
31-
</fileSets>
1+
<assembly>
2+
<id>prj</id>
3+
<formats>
4+
<format>tar.gz</format>
5+
<format>zip</format>
6+
</formats>
7+
<includeBaseDirectory>false</includeBaseDirectory>
8+
<fileSets>
9+
<fileSet>
10+
<includes>
11+
<include>README*</include>
12+
<include>LICENSE*</include>
13+
<include>NOTICE*</include>
14+
<include>pom.xml</include>
15+
</includes>
16+
</fileSet>
17+
<fileSet>
18+
<directory>src</directory>
19+
</fileSet>
20+
<fileSet>
21+
<directory>target/site</directory>
22+
<outputDirectory>doc</outputDirectory>
23+
</fileSet>
24+
<fileSet>
25+
<directory>target</directory>
26+
<outputDirectory></outputDirectory>
27+
<includes>
28+
<include>${artifactId}-${version}.jar</include>
29+
</includes>
30+
</fileSet>
31+
</fileSets>
3232
</assembly>

checkstyle.xml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
<!--
2-
checkstyle.xml
3-
4-
Checkstyle configuration file for use with Java software projects at LOCI.
5-
Run "ant style" to check for source code style deviations.
6-
-->
7-
<!DOCTYPE module PUBLIC
8-
"-//Puppy Crawl//DTD Check Configuration 1.2//EN"
9-
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
10-
<module name="Checker">
11-
<module name="TreeWalker">
12-
<module name="AvoidStarImport"/>
13-
<module name="IllegalImport"/>
14-
<module name="RedundantImport"/>
15-
<module name="UnusedImports"/>
16-
<module name="JavadocType">
17-
<property name="scope" value="public"/>
18-
<property name="authorFormat" value=".*"/>
19-
<property name="versionFormat" value="\$Revision.*\$.*"/>
20-
<!--<property name="versionFormat" value="\$Revision.*\$ \$Date.*\$.*"/>-->
21-
</module>
22-
<module name="JavadocStyle">
23-
<property name="scope" value="public"/>
24-
<property name="checkFirstSentence" value="false"/>
25-
</module>
26-
</module>
1+
<!--
2+
checkstyle.xml
3+
4+
Checkstyle configuration file for use with Java software projects at LOCI.
5+
Run "ant style" to check for source code style deviations.
6+
-->
7+
<!DOCTYPE module PUBLIC
8+
"-//Puppy Crawl//DTD Check Configuration 1.2//EN"
9+
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
10+
<module name="Checker">
11+
<module name="TreeWalker">
12+
<module name="AvoidStarImport"/>
13+
<module name="IllegalImport"/>
14+
<module name="RedundantImport"/>
15+
<module name="UnusedImports"/>
16+
<module name="JavadocType">
17+
<property name="scope" value="public"/>
18+
<property name="authorFormat" value=".*"/>
19+
<property name="versionFormat" value="\$Revision.*\$.*"/>
20+
<!--<property name="versionFormat" value="\$Revision.*\$ \$Date.*\$.*"/>-->
21+
</module>
22+
<module name="JavadocStyle">
23+
<property name="scope" value="public"/>
24+
<property name="checkFirstSentence" value="false"/>
25+
</module>
26+
</module>
2727
</module>
Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
1-
/*
2-
*
3-
* The DbUnit Database Testing Framework
4-
* Copyright (C)2002-2009, DbUnit.org
5-
*
6-
* This library is free software; you can redistribute it and/or
7-
* modify it under the terms of the GNU Lesser General Public
8-
* License as published by the Free Software Foundation; either
9-
* version 2.1 of the License, or (at your option) any later version.
10-
*
11-
* This library is distributed in the hope that it will be useful,
12-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14-
* Lesser General Public License for more details.
15-
*
16-
* You should have received a copy of the GNU Lesser General Public
17-
* License along with this library; if not, write to the Free Software
18-
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19-
*
20-
*/
21-
package org.dbunit;
22-
23-
import java.sql.SQLException;
24-
25-
import org.dbunit.database.IDatabaseConnection;
26-
import org.slf4j.Logger;
27-
import org.slf4j.LoggerFactory;
28-
29-
/**
30-
* Default implementation of the {@link IOperationListener}.
31-
*
32-
* @author gommma (gommma AT users.sourceforge.net)
33-
* @author Last changed by: $Author$
34-
* @version $Revision$ $Date$
35-
* @since 2.4.4
36-
*/
37-
public class DefaultOperationListener implements IOperationListener{
38-
39-
/**
40-
* Logger for this class
41-
*/
42-
private static final Logger logger = LoggerFactory.getLogger(DefaultOperationListener.class);
43-
44-
45-
public void connectionRetrieved(IDatabaseConnection connection) {
46-
logger.debug("connectionCreated(connection={}) - start", connection);
47-
// Is by default a no-op
48-
}
49-
50-
public void operationSetUpFinished(IDatabaseConnection connection) {
51-
logger.debug("operationSetUpFinished(connection={}) - start", connection);
52-
closeConnection(connection);
53-
}
54-
55-
public void operationTearDownFinished(IDatabaseConnection connection) {
56-
logger.debug("operationTearDownFinished(connection={}) - start", connection);
57-
closeConnection(connection);
58-
}
59-
60-
private void closeConnection(IDatabaseConnection connection)
61-
{
62-
logger.debug("closeConnection(connection={}) - start",connection);
63-
try {
64-
connection.close();
65-
} catch (SQLException e) {
66-
logger.warn("Exception while closing the connection: " + e, e);
67-
}
68-
}
69-
1+
/*
2+
*
3+
* The DbUnit Database Testing Framework
4+
* Copyright (C)2002-2009, DbUnit.org
5+
*
6+
* This library is free software; you can redistribute it and/or
7+
* modify it under the terms of the GNU Lesser General Public
8+
* License as published by the Free Software Foundation; either
9+
* version 2.1 of the License, or (at your option) any later version.
10+
*
11+
* This library is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14+
* Lesser General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU Lesser General Public
17+
* License along with this library; if not, write to the Free Software
18+
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19+
*
20+
*/
21+
package org.dbunit;
22+
23+
import java.sql.SQLException;
24+
25+
import org.dbunit.database.IDatabaseConnection;
26+
import org.slf4j.Logger;
27+
import org.slf4j.LoggerFactory;
28+
29+
/**
30+
* Default implementation of the {@link IOperationListener}.
31+
*
32+
* @author gommma (gommma AT users.sourceforge.net)
33+
* @author Last changed by: $Author$
34+
* @version $Revision$ $Date$
35+
* @since 2.4.4
36+
*/
37+
public class DefaultOperationListener implements IOperationListener{
38+
39+
/**
40+
* Logger for this class
41+
*/
42+
private static final Logger logger = LoggerFactory.getLogger(DefaultOperationListener.class);
43+
44+
45+
public void connectionRetrieved(IDatabaseConnection connection) {
46+
logger.debug("connectionCreated(connection={}) - start", connection);
47+
// Is by default a no-op
48+
}
49+
50+
public void operationSetUpFinished(IDatabaseConnection connection) {
51+
logger.debug("operationSetUpFinished(connection={}) - start", connection);
52+
closeConnection(connection);
53+
}
54+
55+
public void operationTearDownFinished(IDatabaseConnection connection) {
56+
logger.debug("operationTearDownFinished(connection={}) - start", connection);
57+
closeConnection(connection);
58+
}
59+
60+
private void closeConnection(IDatabaseConnection connection)
61+
{
62+
logger.debug("closeConnection(connection={}) - start",connection);
63+
try {
64+
connection.close();
65+
} catch (SQLException e) {
66+
logger.warn("Exception while closing the connection: " + e, e);
67+
}
68+
}
69+
7070
}

0 commit comments

Comments
 (0)