branch develop updated (e4c8032 -> 1401d25)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository topia. See http://git.nuiton.org/topia.git from e4c8032 Merge branch 'feature/3768' into develop (closes #3768) new 1401d25 Fix incorrect hibernateAttributeType tag value usage instead of attributeType (See #3765) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 1401d25aacfcd62076f893d2c5ea15dd6b7fa184 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Aug 26 15:38:59 2015 +0200 Fix incorrect hibernateAttributeType tag value usage instead of attributeType (See #3765) Summary of changes: .../src/main/java/org/nuiton/topia/templates/TopiaTagValues.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository topia. See http://git.nuiton.org/topia.git commit 1401d25aacfcd62076f893d2c5ea15dd6b7fa184 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Aug 26 15:38:59 2015 +0200 Fix incorrect hibernateAttributeType tag value usage instead of attributeType (See #3765) --- .../src/main/java/org/nuiton/topia/templates/TopiaTagValues.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topia-templates/src/main/java/org/nuiton/topia/templates/TopiaTagValues.java b/topia-templates/src/main/java/org/nuiton/topia/templates/TopiaTagValues.java index d1e195d..b28becb 100644 --- a/topia-templates/src/main/java/org/nuiton/topia/templates/TopiaTagValues.java +++ b/topia-templates/src/main/java/org/nuiton/topia/templates/TopiaTagValues.java @@ -807,7 +807,7 @@ public class TopiaTagValues extends TagValueDefinitionProvider { */ public String getAttributeType(ObjectModelAttribute attribute, ObjectModelClassifier classifier, ObjectModelPackage aPackage, ObjectModel model) { - String value = TagValues.findDirectTagValue(TAG_HIBERNATE_ATTRIBUTE_TYPE, null, attribute); + String value = TagValues.findDirectTagValue(TAG_ATTRIBUTE_TYPE, null, attribute); if (value == null) { String tagValueName = TAG_ATTRIBUTE_TYPE + "." + attribute.getType(); value = TagValues.findTagValue(tagValueName, attribute.getType(), classifier, aPackage, model); -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm