Hello,
 
In MetafacadeMappings class , for method 
"getMetafacadeMapping( String metaobjectClass,  Collection stereotypes,  String 
namespace, String context)"  a null check for mapping should be placed before this 
logging statement or else when logging level is raised to DEBUG this block of 
statement throws null pointer assignment.
 
Currently :
 
         if (logger.isDebugEnabled())
             logger.debug("found mapping --> '" + mapping
                 + "' with metafacadeClass --> '" + mapping.getMetafacadeClass()
                 + "'");

Should it be:
 

if(mapping != null){

         if (logger.isDebugEnabled())
             logger.debug("found mapping --> '" + mapping
                 + "' with metafacadeClass --> '" + mapping.getMetafacadeClass()
                 + "'");

}

-Vikram.

HS^µéX¬²š'²ŠÞu¼’†Šxµç!r‰‹£¬¶šâqê'V§Ç‰­tÒ¢xœ
PÑãèåËouÓJdJ‰âp5CùèåË}Òj÷¹ÒßEëZŠZ'"y¢w«·žJ©¦)àjwE­çûa¶Úÿ
0²)â×…Ê&ÿ?ÈHÞ&«¶¸ë?÷]<[EMAIL PROTECTED](º·~Šàzw­þX¬¶ÏåŠËbú?jwk¢gZºÇ

Reply via email to