#OTHER by mawalch cvs_MAIN
authormawalch
Mon, 22 May 2017 14:18:31 +0200
branchcvs_MAIN
changeset 3713 68c63bd08343
parent 3712 91636aa579a5
child 3714 73eaf955ca93
#OTHER by mawalch Spelling.
JavaClassRegistry.st
--- a/JavaClassRegistry.st	Mon May 22 14:18:28 2017 +0200
+++ b/JavaClassRegistry.st	Mon May 22 14:18:31 2017 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1996-2015 by Claus Gittinger
 
@@ -491,7 +489,7 @@
 !
 
 registerClassInClassLoader: class
-    "Registers class in it's classloader"
+    "Registers class in its classloader"
 
     "/ OpenJDK java.class.ClassLoader keeps list of all loaded classes
     "/ in a field `classes`. This method adds the class to the list.
@@ -502,11 +500,12 @@
     ].
 
     "Created: / 11-08-2014 / 01:37:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 22-05-2017 / 14:12:29 / mawalch"
 !
 
 registerClassInSmalltalk: javaclass notify: doNotify
-    "Registers class in Smalltalk system dictionary and
-     notifies system, so the class become visible by
+    "Registers a class in the Smalltalk system dictionary and
+     notifies the system, so the class becomes visible to
      Smalltalk"
 
     | nameComponents accessor nsName nsNameAsSymbol ns  |
@@ -555,13 +554,14 @@
 
     "Created: / 04-04-2012 / 10:01:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 08-10-2013 / 19:27:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 22-05-2017 / 14:13:26 / mawalch"
 !
 
 registerClassRedefined: class
     "Class has been redefined, so we have to invalidate
-     caches in coresponding java.lang.Class. Luckily enough,
-     thee seem to be support for this - all we have to is to
-     increase class redefinition count."
+     caches in the corresponding java.lang.Class. Luckily enough,
+     there seems to be support for this - all we have to do is to
+     increase the class redefinition count."
 
     | classObject classObjectRedefinitionCountIndex classObjectRedefinitionCount |
 
@@ -572,6 +572,7 @@
     classObject instVarAt:classObjectRedefinitionCountIndex put: classObjectRedefinitionCount.
 
     "Created: / 15-08-2014 / 15:09:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 22-05-2017 / 14:13:58 / mawalch"
 !
 
 unregisterClassInClassLoader: class
@@ -599,7 +600,7 @@
 
     "/ Must wait here - if classes are added and removed too fast,
     "/ a race condition occur in stx:libbasic code (something is
-    "/ nilled menawhile and event handler does not handle this case.
+    "/ nilled meanwhile and event handler does not handle this case.
     "/ This can happen for example when running tests...
     notifier waitUntilProcessed.
 
@@ -621,15 +622,16 @@
 
     "Created: / 04-04-2012 / 10:01:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 17-10-2013 / 10:50:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (format): / 22-05-2017 / 14:15:25 / mawalch"
 ! !
 
 !JavaClassRegistry class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libjava/JavaClassRegistry.st,v 1.8 2015-03-20 12:07:59 vrany Exp $'
+    ^ '$Header$'
 !
 
 version_SVN
-    ^ '§Id§'
+    ^ '$Id$'
 ! !