# HG changeset patch # User Claus Gittinger # Date 1567953729 -7200 # Node ID 72bd0e4ba4d0bc56bd8b4e2e5a6e73b458f21a26 # Parent bf47e57b3d0f1d9bf447fc29918eaec00c18cfc1 #TUNING by exept class: JavaDescriptor class changed: #isJavaPrimitiveArrayName: (send #== instead of #=) diff -r bf47e57b3d0f -r 72bd0e4ba4d0 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]. ! !