/* 62 */ private static HashMap _maps = new HashMap();
/* */
/* */ public static boolean notAProblem(XAResource res, XAException ex, boolean commit)
/* */ {
/* 48 */ boolean isNotAProblem = false;
/* 49 */ XAResourceMap theMap = (XAResourceMap)_maps.get(res.getClass().getName());
/* */
/* 51 */ if (theMap != null) {
/* 52 */ isNotAProblem = theMap.notAProblem(ex, commit);
/* */ }
/* 54 */ return isNotAProblem;
/* */ }