#TUNING by exept cvs_MAIN
authorClaus Gittinger <cg@exept.de>
Sun, 08 Sep 2019 16:42:09 +0200
branchcvs_MAIN
changeset 3961 72bd0e4ba4d0
parent 3960 bf47e57b3d0f
child 3962 a02c0cd92786
#TUNING by exept class: JavaDescriptor class changed: #isJavaPrimitiveArrayName: (send #== instead of #=)
JavaDescriptor.st
--- a/JavaDescriptor.st	Sun Sep 08 16:41:57 2019 +0200
+++ b/JavaDescriptor.st	Sun Sep 08 16:42:09 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1996-2015 by Claus Gittinger
 
@@ -170,7 +172,7 @@
         justTypeSymbol := className copyFrom: ((className lastIndexOf: $[) + 1)
                     to: className size
     ]  ifFalse: [ ^ false ].
-    ^(  justTypeSymbol size = 1 ) 
+    ^(  justTypeSymbol size == 1 ) 
         and: [BaseTypes includesKey: justTypeSymbol first].
 ! !