Skip to content

Commit 1ff9662

Browse files
committed
metamorph-api/ (main): Fix Checkstyle violations.
1 parent d3ad35b commit 1ff9662

22 files changed

+62
-43
lines changed

metamorph-api/src/main/java/org/metafacture/metamorph/api/Collect.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
/**
@@ -21,10 +22,9 @@
2122
* @author Markus Michael Geipel
2223
*
2324
*/
24-
public interface Collect extends FlushListener, ConditionAware,
25-
NamedValuePipe {
25+
public interface Collect extends FlushListener, ConditionAware, NamedValuePipe {
2626

27-
void setWaitForFlush(final boolean waitForFlush);
27+
void setWaitForFlush(boolean waitForFlush);
2828

2929
void setSameEntity(boolean sameEntity);
3030

metamorph-api/src/main/java/org/metafacture/metamorph/api/ConditionAware.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
/**

metamorph-api/src/main/java/org/metafacture/metamorph/api/FlushListener.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
/**
@@ -22,6 +23,6 @@
2223
*/
2324
public interface FlushListener {
2425

25-
void flush(final int recordCount, final int entityCount);
26+
void flush(int recordCount, int entityCount);
2627

2728
}

metamorph-api/src/main/java/org/metafacture/metamorph/api/Function.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.metafacture.metamorph.api;
1716

17+
package org.metafacture.metamorph.api;
1818

1919
/**
2020
* Interface for functions used in Metamorph.
@@ -25,6 +25,7 @@
2525
public interface Function extends NamedValuePipe, FlushListener {
2626

2727
void putValue(String key, String value);
28+
2829
void setMaps(Maps maps);
2930

3031
}

metamorph-api/src/main/java/org/metafacture/metamorph/api/InterceptorFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
/**

metamorph-api/src/main/java/org/metafacture/metamorph/api/KnowsSourceLocation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
/**
@@ -31,7 +32,7 @@ public interface KnowsSourceLocation {
3132
*
3233
* @param sourceLocation a source location
3334
*/
34-
void setSourceLocation(final SourceLocation sourceLocation);
35+
void setSourceLocation(SourceLocation sourceLocation);
3536

3637
/**
3738
* Gets the location object for the location in the morph definition file

metamorph-api/src/main/java/org/metafacture/metamorph/api/Maps.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
import java.util.Collection;

metamorph-api/src/main/java/org/metafacture/metamorph/api/MorphBuildException.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
/**

metamorph-api/src/main/java/org/metafacture/metamorph/api/MorphErrorHandler.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
/**

metamorph-api/src/main/java/org/metafacture/metamorph/api/MorphExecutionException.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.metafacture.metamorph.api;
1718

1819
/**

0 commit comments

Comments
 (0)