JavaNativeMethodImpl_OpenJDK6.st
changeset 3089 08ec1ceb01e7
parent 3088 54211576c9ce
child 3095 b1192955f5a3
--- a/JavaNativeMethodImpl_OpenJDK6.st	Wed Apr 16 20:14:09 2014 +0200
+++ b/JavaNativeMethodImpl_OpenJDK6.st	Wed Apr 16 21:17:13 2014 +0200
@@ -14750,14 +14750,14 @@
     nm := Java as_ST_String: a1.
     (nm startsWith: 'SMALLTALK.') ifFalse:[
         JavaVM
-    throwClassNotFoundException:('No such smalltalk class (%1)' bindWith:nm).
+            throwClassNotFoundException:('No such smalltalk class (%1)' bindWith:nm).
         ^self
     ].
     nm := nm copyFrom: 'SMALLTALK.' size + 1.
     cls := Smalltalk at: nm asSymbol.
     cls isNil ifTrue:[
         JavaVM
-    throwClassNotFoundException:('No such smalltalk class (%1)' bindWith:nm).
+            throwClassNotFoundException:('No such smalltalk class (%1)' bindWith:nm).
         ^self
     ].
     ^Reflection javaClassObjectForClass: cls.