Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-08-23 16:16:11 +0000
committerrbrooks2010-08-23 16:16:11 +0000
commit8bd530a26cf23587cd0fa6f3e0b7a0ba19d83046 (patch)
treee8ab9ce853d2bf55aa7fa62ad85ed4d7e89aa7f7 /plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define
parentcbc5e97c56b998adfa0cede78273b1cdd2793b8b (diff)
downloadorg.eclipse.osee-8bd530a26cf23587cd0fa6f3e0b7a0ba19d83046.tar.gz
org.eclipse.osee-8bd530a26cf23587cd0fa6f3e0b7a0ba19d83046.tar.xz
org.eclipse.osee-8bd530a26cf23587cd0fa6f3e0b7a0ba19d83046.zip
removed redundant Collections.toString() that had reversed arguments
Diffstat (limited to 'plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define')
-rw-r--r--plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/operations/ImportOutfileOperation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/operations/ImportOutfileOperation.java b/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/operations/ImportOutfileOperation.java
index 9f81658c021..586ea07cf0f 100644
--- a/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/operations/ImportOutfileOperation.java
+++ b/plugins/org.eclipse.osee.ote.define/src/org/eclipse/osee/ote/define/operations/ImportOutfileOperation.java
@@ -103,7 +103,7 @@ public class ImportOutfileOperation {
for (Artifact artifact : artifacts) {
toReturn.add(artifact.getName());
}
- return org.eclipse.osee.framework.jdk.core.util.Collections.toString(toReturn, ",\n");
+ return org.eclipse.osee.framework.jdk.core.util.Collections.toString(",\n", toReturn);
}
private void commitSelectedArtifacts(IProgressMonitor monitor, String commitComment, Object[] items) throws Exception {

Back to the top