WrappedMethod.st
changeset 3878 e19107344368
parent 3630 ed4a3c50bf11
child 3879 9c5661b36fa1
child 4130 59d2c86ac996
--- a/WrappedMethod.st	Wed May 27 15:36:10 2015 +0200
+++ b/WrappedMethod.st	Wed May 27 16:26:30 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1994 by Claus Gittinger
 	      All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libbasic3' }"
 
+"{ NameSpace: Smalltalk }"
+
 Method variableSubclass:#WrappedMethod
 	instanceVariableNames:''
 	classVariableNames:'AllWrappedMethods'
@@ -377,10 +381,8 @@
 !WrappedMethod methodsFor:'private'!
 
 annotationAtIndex: index
-
     "return annotation at given index.
-     any raw annotation array is lazily
-     initialized"
+     any raw annotation array is lazily initialized"
 
     ^self originalMethod annotationAtIndex: index
 
@@ -513,14 +515,14 @@
 !WrappedMethod class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/WrappedMethod.st,v 1.44 2014-10-04 11:25:52 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/WrappedMethod.st,v 1.45 2015-05-27 14:26:30 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/WrappedMethod.st,v 1.44 2014-10-04 11:25:52 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/WrappedMethod.st,v 1.45 2015-05-27 14:26:30 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: WrappedMethod.st,v 1.44 2014-10-04 11:25:52 vrany Exp $'
+    ^ '$Id: WrappedMethod.st,v 1.45 2015-05-27 14:26:30 cg Exp $'
 ! !