Removed unused consts.

git-svn-id: https://google-guice.googlecode.com/svn/trunk@145 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/src/com/google/inject/Scope.java b/src/com/google/inject/Scope.java
index 94160e5..2dece30 100644
--- a/src/com/google/inject/Scope.java
+++ b/src/com/google/inject/Scope.java
@@ -17,14 +17,11 @@
 package com.google.inject;
 
 /**
- * A scope which bound objects can reside in. Mapping scopes by name with
- * {@link ContainerBuilder#scope} can help avoid compile time dependencies
- * on the {@code Scope} implementation (if desired) and enable the use of the
- * {@link Scoped} annotation.
+ * A scope which bound objects can reside in.
  *
- * <p>Scope implementations should override {@link #toString} in the returned
- * factory and include the creator's {#toString} output. Doing so aids
- * debugging. They should also override their own {@link #toString}
+ * <p>Scope implementations should override {@code toString()} in the returned
+ * factory and include the creator's {@code toString()} output. Doing so aids
+ * debugging. They should also override their own {@code toString()}
  * method.
  *
  * @author crazybob@google.com (Bob Lee)
diff --git a/src/com/google/inject/servlet/ServletScopes.java b/src/com/google/inject/servlet/ServletScopes.java
index d599144..1dfa780 100644
--- a/src/com/google/inject/servlet/ServletScopes.java
+++ b/src/com/google/inject/servlet/ServletScopes.java
@@ -33,11 +33,6 @@
   private ServletScopes() {}
 
   /**
-   * Name of HTTP servlet request scope.
-   */
-  public static final String REQUEST_NAME = "REQUEST";
-
-  /**
    * HTTP servlet request scope.
    */
   public static final Scope REQUEST = new Scope() {
@@ -60,16 +55,11 @@
     }
 
     public String toString() {
-      return REQUEST_NAME;
+      return "ServletScopes.REQUEST";
     }
   };
 
   /**
-   * Name of HTTP session scope.
-   */
-  public static final String SESSION_NAME = "SESSION";
-
-  /**
    * HTTP session scope.
    */
   public static final Scope SESSION = new Scope() {
@@ -92,7 +82,7 @@
     }
 
     public String toString() {
-      return SESSION_NAME;
+      return "ServletScopes.SESSION";
     }
   };
 }