You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by xu...@apache.org on 2012/04/11 18:00:33 UTC

svn commit: r1324833 - /geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java

Author: xuhaihong
Date: Wed Apr 11 16:00:32 2012
New Revision: 1324833

URL: http://svn.apache.org/viewvc?rev=1324833&view=rev
Log:
getAfterNames() should return those elements which are dependent by the current element

Modified:
    geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java

Modified: geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java?rev=1324833&r1=1324832&r2=1324833&view=diff
==============================================================================
--- geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java (original)
+++ geronimo/server/trunk/framework/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java Wed Apr 11 16:00:32 2012
@@ -544,7 +544,7 @@ public final class ConfigurationUtil {
                     if (gbeanData == t) {
                         continue;
                     }
-                    if (isDependent(gbeanData, t)) {
+                    if (isDependent(t, gbeanData)) {
                         afterNames.add(gbeanData.getAbstractName().toString());
                     }
                 }