add a comment so that we don't try to reuse the 4.x composer's data flavor (which is binary) by accident. r=brade.

This commit is contained in:
pinkerton%netscape.com 2000-01-17 01:34:58 +00:00
parent 6198164edb
commit e3ca705d5f

View File

@ -115,7 +115,14 @@ nsMimeMapperMac :: MapMacOSTypeToMimeType ( ResType inMacType, nsCAutoString & o
switch ( inMacType ) {
case 'TEXT': outMimeStr = kTextMime; break;
// This flavor is the old 4.x Composer flavor for HTML. The actual data is a binary
// data structure which we do NOT want to deal with in any way shape or form. I am
// only including this flavor here so we don't accidentally use it ourselves and
// get very very confused.
case 'EHTM':
// Fall through to the unknown case.
default:
outMimeStr = "unknown";