Forgot to commit this earlier; no need to force JSO to be loaded.

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2608 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/dev/shell/JsValueGlue.java b/dev/core/src/com/google/gwt/dev/shell/JsValueGlue.java
index 0a8783e..f8e8e79 100644
--- a/dev/core/src/com/google/gwt/dev/shell/JsValueGlue.java
+++ b/dev/core/src/com/google/gwt/dev/shell/JsValueGlue.java
@@ -171,7 +171,7 @@
     } else {
       // not a boxed primitive
       try {
-        Class<?> jsoType = Class.forName(JSO_IMPL_CLASS, true, cl);
+        Class<?> jsoType = Class.forName(JSO_IMPL_CLASS, false, cl);
         if (jsoType == obj.getClass()) {
           JsValue jsObject = getUnderlyingObject(obj);
           value.setValue(jsObject);