#OTHER by mawalch cvs_MAIN
authormawalch
Tue, 30 May 2017 19:03:51 +0200
branchcvs_MAIN
changeset 3718 2e07c4e3b35c
parent 3717 f5197ddddac5
child 3721 196cf9bf422c
#OTHER by mawalch Spelling fixes in comments.
JavaAnnotationContainer.st
--- a/JavaAnnotationContainer.st	Mon May 29 15:43:48 2017 +0200
+++ b/JavaAnnotationContainer.st	Tue May 30 19:03:51 2017 +0200
@@ -20,6 +20,8 @@
 "
 "{ Package: 'stx:libjava' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#JavaAnnotationContainer
 	instanceVariableNames:'runtimeVisible runtimeInvisible parent'
 	classVariableNames:''
@@ -126,14 +128,15 @@
 
 initialize
 
-    "Do not remove this method, is reqired for proper
-     initialization of 'empty' containers!!!!!!"
+    "Do not remove this method. It is required for proper
+     initialization of 'empty' containers!!"
 
     runtimeVisible := JavaAnnotationDictionary empty.
     runtimeInvisible := JavaAnnotationDictionary empty.
 
     "Modified: / 16-03-2011 / 17:11:03 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
     "Created: / 16-03-2011 / 16:50:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 30-05-2017 / 18:59:41 / mawalch"
 !
 
 initializeFor: aParent
@@ -148,7 +151,7 @@
 !JavaAnnotationContainer class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libjava/JavaAnnotationContainer.st,v 1.8 2015-03-20 12:07:59 vrany Exp $'
+    ^ '$Header$'
 !
 
 version_HG
@@ -157,6 +160,6 @@
 !
 
 version_SVN
-    ^ 'Id'
+    ^ '$Id$'
 ! !