RE: [Mono-dev] not implemented destructor in FontNameConverter

2005-08-09 Thread Andrew Skiba
As a temporary solution I committed TARGET_JVM so that this destructor will not be present in our build, but probably it's worth to do same for Mono, too. I wonder, what was the need to throw NotImplementedException in FontNameConverter destructor? What will do GC when destructor fails in

Re: [Mono-dev] not implemented destructor in FontNameConverter

2005-08-09 Thread Miguel de Icaza
Hello, I wonder, what was the need to throw NotImplementedException in FontNameConverter destructor? What will do GC when destructor fails in such way? The code is in FontConverter.cs:283 It seems like code that was originally just stubbed out and not completed. Thanks for pointing this out,