You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2008/09/19 12:20:02 UTC

svn commit: r697036 - /geronimo/gshell/trunk/gshell-support/gshell-spring/src/main/java/org/apache/geronimo/gshell/spring/BeanContainerImpl.java

Author: jdillon
Date: Fri Sep 19 03:20:01 2008
New Revision: 697036

URL: http://svn.apache.org/viewvc?rev=697036&view=rev
Log:
Drop redundant null

Modified:
    geronimo/gshell/trunk/gshell-support/gshell-spring/src/main/java/org/apache/geronimo/gshell/spring/BeanContainerImpl.java

Modified: geronimo/gshell/trunk/gshell-support/gshell-spring/src/main/java/org/apache/geronimo/gshell/spring/BeanContainerImpl.java
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/gshell-spring/src/main/java/org/apache/geronimo/gshell/spring/BeanContainerImpl.java?rev=697036&r1=697035&r2=697036&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-support/gshell-spring/src/main/java/org/apache/geronimo/gshell/spring/BeanContainerImpl.java (original)
+++ geronimo/gshell/trunk/gshell-support/gshell-spring/src/main/java/org/apache/geronimo/gshell/spring/BeanContainerImpl.java Fri Sep 19 03:20:01 2008
@@ -163,7 +163,7 @@
 
         log.debug("Creating child container: {}", id);
 
-        ClassRealm childRealm = null;
+        ClassRealm childRealm;
         try {
             childRealm = classRealm.createChildRealm(id);
         }