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=257from 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] ]