Repository: incubator-nifi Updated Branches: refs/heads/develop 25e2b6c8a -> 6e5469c71
NIFI-533: Fixed checkstyle problem Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/6e5469c7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/6e5469c7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/6e5469c7 Branch: refs/heads/develop Commit: 6e5469c712c0f4cf44491e58bbdea5f6611b3f40 Parents: 25e2b6c Author: Mark Payne <[email protected]> Authored: Wed Apr 29 16:32:52 2015 -0400 Committer: Mark Payne <[email protected]> Committed: Wed Apr 29 16:32:52 2015 -0400 ---------------------------------------------------------------------- .../java/org/apache/nifi/processors/hadoop/TestListHDFS.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/6e5469c7/nifi/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/test/java/org/apache/nifi/processors/hadoop/TestListHDFS.java ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/test/java/org/apache/nifi/processors/hadoop/TestListHDFS.java b/nifi/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/test/java/org/apache/nifi/processors/hadoop/TestListHDFS.java index 0492ccf..5822fc5 100644 --- a/nifi/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/test/java/org/apache/nifi/processors/hadoop/TestListHDFS.java +++ b/nifi/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/test/java/org/apache/nifi/processors/hadoop/TestListHDFS.java @@ -246,7 +246,8 @@ public class TestListHDFS { } @Override - public FSDataOutputStream create(final Path f, final FsPermission permission, final boolean overwrite, final int bufferSize, final short replication, final long blockSize, final Progressable progress) throws IOException { + public FSDataOutputStream create(final Path f, final FsPermission permission, final boolean overwrite, final int bufferSize, final short replication, + final long blockSize, final Progressable progress) throws IOException { return null; } @@ -317,7 +318,8 @@ public class TestListHDFS { @Override @SuppressWarnings("unchecked") - public <K, V> V getAndPutIfAbsent(final K key, final V value, final Serializer<K> keySerializer, final Serializer<V> valueSerializer, final Deserializer<V> valueDeserializer) throws IOException { + public <K, V> V getAndPutIfAbsent(final K key, final V value, final Serializer<K> keySerializer, final Serializer<V> valueSerializer, + final Deserializer<V> valueDeserializer) throws IOException { verifyNotFail(); return (V) values.putIfAbsent(key, value); }
