JavaVM.st
branchdevelopment
changeset 2914 1f4c3054998c
parent 2908 064418faa2e3
child 2921 85ccd41f883c
--- a/JavaVM.st	Mon Nov 11 22:33:23 2013 +0000
+++ b/JavaVM.st	Tue Nov 12 01:31:21 2013 +0000
@@ -4741,12 +4741,29 @@
 
 !JavaVM class methodsFor:'native - java.lang'!
 
+_java_lang_Object_clone: this
+    "Forward here as optimized code delegates to  JavaVM"
+
+    ^ NativeMethodsImplementation _java_lang_Object_clone: this
+
+    "Created: / 12-11-2013 / 01:09:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 _java_lang_System_arraycopy: nativeContext
+    <resource: #obsolete>
     "Forward here as optimized code delegates to  JavaVM"
 
     ^ NativeMethodsImplementation _java_lang_System_arraycopy: nativeContext receiver _:(nativeContext argAt:1) _: (nativeContext argAt:2) _: (nativeContext argAt:3) _: (nativeContext argAt:4) _: (nativeContext argAt:5) 
 
     "Modified: / 21-01-2013 / 09:18:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+_java_lang_System_arraycopy: this _:a1 _: a2 _: a3 _: a4 _: a5
+    "Forward here as optimized code delegates to JavaVM"
+
+    ^ NativeMethodsImplementation _java_lang_System_arraycopy: this _:a1 _: a2 _: a3 _: a4 _: a5
+
+    "Created: / 12-11-2013 / 01:11:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !JavaVM class methodsFor:'queries'!