You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by ma...@apache.org on 2015/10/25 23:54:46 UTC

[06/12] oodt git commit: fix incorrect addition

fix incorrect addition


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

Branch: refs/heads/master
Commit: 3939769883b7e136a37f5c917a792ad69289f824
Parents: eadd142
Author: Tom Barber <to...@analytical-labs.com>
Authored: Sun Oct 25 22:18:35 2015 +0000
Committer: Tom Barber <to...@analytical-labs.com>
Committed: Sun Oct 25 22:18:35 2015 +0000

----------------------------------------------------------------------
 .../org/apache/oodt/cas/pge/config/FileStagingInfo.java     | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oodt/blob/39397698/pge/src/main/java/org/apache/oodt/cas/pge/config/FileStagingInfo.java
----------------------------------------------------------------------
diff --git a/pge/src/main/java/org/apache/oodt/cas/pge/config/FileStagingInfo.java b/pge/src/main/java/org/apache/oodt/cas/pge/config/FileStagingInfo.java
index e43f0bc..f3362d4 100644
--- a/pge/src/main/java/org/apache/oodt/cas/pge/config/FileStagingInfo.java
+++ b/pge/src/main/java/org/apache/oodt/cas/pge/config/FileStagingInfo.java
@@ -17,12 +17,13 @@
 package org.apache.oodt.cas.pge.config;
 
 //JDK imports
+import com.google.common.collect.Lists;
+import com.google.common.collect.Sets;
+
 import java.util.List;
 import java.util.Set;
 
 //Google imports
-import com.google.common.collect.Lists;
-import com.google.common.collect.Sets;
 
 /**
  * Configuration information about which files should be staged and where.
@@ -63,8 +64,8 @@ public class FileStagingInfo {
       productIds.add(productId);
    }
 
-   public void addProductIds(List<String> productIds) {
-      productIds.addAll(productIds);
+   public void addProductIds(List<String> productIdsInc) {
+      productIds.addAll(productIdsInc);
    }
 
    public List<String> getProductIds() {