You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2015/11/10 21:12:58 UTC

[7/7] nifi git commit: NIFI-1147: Fixed checkstyle violations

NIFI-1147: Fixed checkstyle violations


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/cf7bfe9e
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/cf7bfe9e
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/cf7bfe9e

Branch: refs/heads/master
Commit: cf7bfe9e1cf9d3bab3a0806be66b536b3d7d10cb
Parents: 7200803
Author: Mark Payne <ma...@hotmail.com>
Authored: Tue Nov 10 15:04:37 2015 -0500
Committer: Mark Payne <ma...@hotmail.com>
Committed: Tue Nov 10 15:04:37 2015 -0500

----------------------------------------------------------------------
 nifi-api/src/main/java/org/apache/nifi/flowfile/FlowFile.java      | 2 +-
 .../java/org/apache/nifi/provenance/ProvenanceEventRecord.java     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/cf7bfe9e/nifi-api/src/main/java/org/apache/nifi/flowfile/FlowFile.java
----------------------------------------------------------------------
diff --git a/nifi-api/src/main/java/org/apache/nifi/flowfile/FlowFile.java b/nifi-api/src/main/java/org/apache/nifi/flowfile/FlowFile.java
index 5edb7dd..973ea40 100644
--- a/nifi-api/src/main/java/org/apache/nifi/flowfile/FlowFile.java
+++ b/nifi-api/src/main/java/org/apache/nifi/flowfile/FlowFile.java
@@ -64,7 +64,7 @@ public interface FlowFile extends Comparable<FlowFile> {
      * @return a set of identifiers that are unique to this FlowFile's lineage.
      * If FlowFile X is derived from FlowFile Y, both FlowFiles will have the
      * same value for the Lineage Claim ID.
-     * 
+     *
      * @deprecated this collection was erroneously unbounded and caused a lot of OutOfMemoryError problems
      *             when dealing with FlowFiles with many ancestors. This Collection is
      *             now capped at 100 lineage identifiers. This method was introduced with the idea of providing

http://git-wip-us.apache.org/repos/asf/nifi/blob/cf7bfe9e/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventRecord.java
----------------------------------------------------------------------
diff --git a/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventRecord.java b/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventRecord.java
index fc26d93..53b9c3e 100644
--- a/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventRecord.java
+++ b/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventRecord.java
@@ -51,7 +51,7 @@ public interface ProvenanceEventRecord {
     /**
      * @return the set of all lineage identifiers that are associated with the
      * FlowFile for which this Event was created
-     * 
+     *
      * @deprecated this collection was erroneously unbounded and caused a lot of OutOfMemoryError problems
      *             when querying Provenance Events about FlowFiles with many ancestors. This Collection is
      *             now capped at 100 lineage identifiers. This method was introduced with the idea of providing