[jboss-cvs] JBossAS SVN: r66010 - projects/microcontainer/trunk/metatype/src/main/org/jboss/metatype/api/values.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Wed Oct 10 10:12:15 EDT 2007
Author: alesj
Date: 2007-10-10 10:12:15 -0400 (Wed, 10 Oct 2007)
New Revision: 66010
Modified:
projects/microcontainer/trunk/metatype/src/main/org/jboss/metatype/api/values/SimpleValueSupport.java
Log:
Single value set assignment point.
Modified: projects/microcontainer/trunk/metatype/src/main/org/jboss/metatype/api/values/SimpleValueSupport.java
===================================================================
--- projects/microcontainer/trunk/metatype/src/main/org/jboss/metatype/api/values/SimpleValueSupport.java 2007-10-10 13:57:13 UTC (rev 66009)
+++ projects/microcontainer/trunk/metatype/src/main/org/jboss/metatype/api/values/SimpleValueSupport.java 2007-10-10 14:12:15 UTC (rev 66010)
@@ -72,7 +72,7 @@
if (metaType == null)
throw new IllegalArgumentException("Null simple meta type");
this.metaType = metaType;
- this.value = value;
+ setValue(value);
}
public SimpleMetaType<T> getMetaType()
@@ -98,7 +98,7 @@
public void setValue(T value)
{
this.value = value;
- }
+ }
@Override
public boolean equals(Object obj)
More information about the jboss-cvs-commits
mailing list