Silly code-style fixes

git-svn-id: https://google-guice.googlecode.com/svn/trunk@115 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/src/com/google/inject/InternalContext.java b/src/com/google/inject/InternalContext.java
index e8184f9..4b35c39 100644
--- a/src/com/google/inject/InternalContext.java
+++ b/src/com/google/inject/InternalContext.java
@@ -16,8 +16,8 @@
 
 package com.google.inject;
 
-import java.util.Map;
 import java.util.HashMap;
+import java.util.Map;
 
 /**
  * Internal context. Used to coordinate injections and support circular
@@ -50,9 +50,10 @@
       ConstructionContext<T> constructionContext = new ConstructionContext<T>();
       constructionContexts.put(key, constructionContext);
       return constructionContext;
-    } else {
-      ConstructionContext<T> constructionContext =
-          (ConstructionContext<T>) constructionContexts.get(key);
+    }
+    else {
+      ConstructionContext<T> constructionContext
+          = (ConstructionContext<T>) constructionContexts.get(key);
       if (constructionContext == null) {
         constructionContext = new ConstructionContext<T>();
         constructionContexts.put(key, constructionContext);