Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Ladenberger2012-02-21 12:22:06 +0000
committerLukas Ladenberger2012-02-21 12:22:06 +0000
commit8e7e2ab509b94a746202f3cb14f8a40ab4ad8c49 (patch)
tree47fa87e2958a187a026463090258e94380406ae9
parent944b7a30db35f2cdfadc6462d160e2cf88fc5ba8 (diff)
downloadorg.eclipse.rmf-8e7e2ab509b94a746202f3cb14f8a40ab4ad8c49.tar.gz
org.eclipse.rmf-8e7e2ab509b94a746202f3cb14f8a40ab4ad8c49.tar.xz
org.eclipse.rmf-8e7e2ab509b94a746202f3cb14f8a40ab4ad8c49.zip
fixed method
-rw-r--r--org.eclipse.rmf.pror.reqif10.edit/src/org/eclipse/rmf/pror/reqif10/util/ProrUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.rmf.pror.reqif10.edit/src/org/eclipse/rmf/pror/reqif10/util/ProrUtil.java b/org.eclipse.rmf.pror.reqif10.edit/src/org/eclipse/rmf/pror/reqif10/util/ProrUtil.java
index 41fc7032..8755d558 100644
--- a/org.eclipse.rmf.pror.reqif10.edit/src/org/eclipse/rmf/pror/reqif10/util/ProrUtil.java
+++ b/org.eclipse.rmf.pror.reqif10.edit/src/org/eclipse/rmf/pror/reqif10/util/ProrUtil.java
@@ -218,7 +218,7 @@ public final class ProrUtil {
EList<AttributeValue> list = specObject.getValues();
for (AttributeValue av : list) {
if (definition.equals(Reqif10Util.getDatatypeDefinition(av))) {
- ProrUtil.setTheValue(av, specObject, value, ed);
+ ProrUtil.setTheValue(av, value, specObject, ed);
return true;
}
}

Back to the top