Skip to content

Commit 5f5b72e

Browse files
committed
Issue FUML14-9 - Changed add'l ElementAssmbler debug msgs to warnings.
1 parent e9458e5 commit 5f5b72e

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

org.modeldriven.fuml/.classpath

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
2626
<attributes>
2727
<attribute name="maven.pomderived" value="true"/>
28+
<attribute name="org.eclipse.jst.component.nondependency" value=""/>
2829
</attributes>
2930
</classpathentry>
3031
<classpathentry kind="src" output="target/classes" path="target/generated-sources/java">
@@ -34,7 +35,7 @@
3435
</classpathentry>
3536
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
3637
<attributes>
37-
<attribute name="maven.pomderived" value="true"/>
38+
<attribute name="owner.project.facets" value="java"/>
3839
</attributes>
3940
</classpathentry>
4041
<classpathentry kind="output" path="target/classes"/>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<faceted-project>
3-
<installed facet="java" version="1.5"/>
4-
<installed facet="jst.utility" version="1.0"/>
5-
</faceted-project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<faceted-project>
3+
<installed facet="jst.utility" version="1.0"/>
4+
<installed facet="java" version="1.6"/>
5+
</faceted-project>

org.modeldriven.fuml/src/main/java/org/modeldriven/fuml/assembly/ElementAssembler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ private void assembleEnumerationFeature(Property property, Object value, Classif
871871
String msg = "no fUML (" + this.getTargetObject().getClass().getName()
872872
+ ") setter method or public field found for enumeration feature " + "<"
873873
+ type.getName() + "> " + this.getPrototype().getName() + "." + property.getName();
874-
log.warn(msg);
874+
log.debug(msg);
875875
}
876876
}
877877
}
@@ -924,7 +924,7 @@ private void assembleCollectionPrimitiveFeature(Property property, Object value,
924924
+ ") add method or public field found for primitive collection property "
925925
+ "<" + javaType.getName() + "> " + this.getPrototype().getName() + "."
926926
+ property.getName();
927-
log.warn(msg);
927+
log.debug(msg);
928928
} catch (NoSuchFieldException e2) {
929929
String msg = "no fUML (" + this.getTargetObject().getClass().getName()
930930
+ ") add method or public field found for primitive collection property "

0 commit comments

Comments
 (0)