Fixes after bad commit development
authorJan Vrany <jan.vrany@fit.cvut.cz>
Sat, 15 Dec 2012 15:51:48 +0100
branchdevelopment
changeset 1877 14cbc77e9aaa
parent 1876 482ad5ebe5da
child 1878 4df79c0e1f53
Fixes after bad commit
JavaVM.st
extensions.st
--- a/JavaVM.st	Sat Dec 15 14:46:18 2012 +0100
+++ b/JavaVM.st	Sat Dec 15 15:51:48 2012 +0100
@@ -19960,7 +19960,7 @@
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libjava/JavaVM.st,v 1.186 2011/08/22 14:49:28 vrany Exp §'
+    ^ 'Header: /cvs/stx/stx/libjava/JavaVM.st,v 1.186 2011/08/22 14:49:28 vrany Exp '
 !
 
 version_HG
@@ -19969,7 +19969,7 @@
 !
 
 version_SVN
-    ^ '§Id§'
+    ^ 'Id'
 ! !
 
 JavaVM initialize!
--- a/extensions.st	Sat Dec 15 14:46:18 2012 +0100
+++ b/extensions.st	Sat Dec 15 15:51:48 2012 +0100
@@ -2026,131 +2026,9 @@
     "Modified: / 10-12-2012 / 05:41:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-!(Java classForName:'java.lang.Byte') class  methodsFor:'* proxies *'!
-
-javaWrap: object
-	|inst|
-    inst := self basicNew.
-    inst perform: #'<init>(B)V' with: object.
-	^ inst.
-! !
-
-!(Java classForName:'java.lang.Byte') class  methodsFor:'* proxies *'!
-
-javaWrapRequired
-    "Returns true, if a #javaWrap: has to be called
-     prior an instance of Smalltalk object is passed 
-     as an argument to Java method, whoose formal tyoe
-     is the receiver."
-
-    ^true
-! !
-
-!(Java classForName:'java.lang.Double') class  methodsFor:'queries'!
-
-javaWrap: object
-	|inst|
-    inst := self basicNew.
-    inst perform: #'<init>(D)V' with: object with: nil.
-	^ inst.
-! !
-
-!(Java classForName:'java.lang.Double') class  methodsFor:'queries'!
-
-javaWrapRequired
-    "Returns true, if a #javaWrap: has to be called
-     prior an instance of Smalltalk object is passed 
-     as an argument to Java method, whoose formal tyoe
-     is the receiver."
-
-    ^true
-! !
-
-!(Java classForName:'java.lang.Float') class  methodsFor:'queries'!
-
-javaWrap: object
-	|inst|
-    inst := self basicNew.
-    inst perform: #'<init>(F)V' with: object.
-	^ inst.
-! !
-
-!(Java classForName:'java.lang.Float') class  methodsFor:'queries'!
-
-javaWrapRequired
-    "Returns true, if a #javaWrap: has to be called
-     prior an instance of Smalltalk object is passed 
-     as an argument to Java method, whoose formal tyoe
-     is the receiver."
-
-    ^true
-! !
-
-!(Java classForName:'java.lang.Integer') class  methodsFor:'queries'!
-
-javaWrap: object
-	|inst|
-    inst := self basicNew.
-	inst perform: #'<init>(I)V' with: object.
-	^ inst.
-! !
-
-!(Java classForName:'java.lang.Integer') class  methodsFor:'queries'!
-
-javaWrapRequired
-    "Returns true, if a #javaWrap: has to be called
-     prior an instance of Smalltalk object is passed 
-     as an argument to Java method, whoose formal tyoe
-     is the receiver."
-
-    ^true
-! !
-
-!(Java classForName:'java.lang.Long') class  methodsFor:'queries'!
-
-javaWrap: object
-	|inst|
-    inst := self basicNew.
-    inst perform: #'<init>(J)V' with: object with: nil.
-	^ inst.
-! !
-
-!(Java classForName:'java.lang.Long') class  methodsFor:'queries'!
-
-javaWrapRequired
-    "Returns true, if a #javaWrap: has to be called
-     prior an instance of Smalltalk object is passed
-     as an argument to Java method, whoose formal tyoe
-     is the receiver."
-
-    ^true
-! !
-
-!(Java classForName:'java.lang.String') class  methodsFor:'queries'!
-
-javaWrap: object
-    | jstring |
-
-    object isNil ifTrue:[ ^ nil ].
-    jstring := self basicNew.
-    jstring perform: #'<init>([C)V' with: object.
-    ^jstring
-! !
-
-!(Java classForName:'java.lang.String') class  methodsFor:'queries'!
-
-javaWrapRequired
-    "Returns true, if a #javaWrap: has to be called
-     prior an instance of Smalltalk object is passed 
-     as an argument to Java method, whoose formal tyoe
-     is the receiver."
-
-    ^true
-! !
-
 !stx_libjava class methodsFor:'documentation'!
 
 extensionsVersion_HG
 
     ^ '$Changeset: <not expanded> $'
-! !
\ No newline at end of file
+! !