Issue 257 in glassdb: Bug in Monticello with empty category name from dynamically generated methods

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 257 in glassdb: Bug in Monticello with empty category name from dynamically generated methods

glassdb
Status: Accepted
Owner: [hidden email]
Labels: Type-Defect Priority-Medium GLASS-Server Version-GLASS0.231  
Milestone-1.0-beta.8.7

New issue 257 by [hidden email]: Bug in Monticello with empty category  
name from dynamically generated methods
http://code.google.com/p/glassdb/issues/detail?id=257

from Thierry Thelliez:

The execution of the following method fails if the categoryName is empty  
(#'').

PackageInfo
isForeignClassExtension: categoryName
        ^ categoryName first = $* and: [(self isYourClassExtension: categoryName)  
not]


The categoryName was empty because some methods were dynamically
generated with _compileInContext....

The fix might be as simple as:

isForeignClassExtension: categoryName
        ^ categoryName isEmpty not and: [ categoryName first = $* and: [(self
isYourClassExtension: categoryName) not] ]


Reply | Threaded
Open this post in threaded view
|

Re: Issue 257 in glassdb: Bug in Monticello with empty category name from dynamically generated methods

glassdb
Updates:
        Status: Fixed
        Labels: Fixed-1.0-beta.8.7

Comment #1 on issue 257 by [hidden email]: Bug in Monticello with  
empty category name from dynamically generated methods
http://code.google.com/p/glassdb/issues/detail?id=257

fixed .. GsMonticello 0.241 (dkh.129)