/* */ }
/* */
/* */ public static Constructor findConstructorByHash(Class clazz, Long hash) throws Exception
/* */ {
/* 95 */ Map hashes = getConstructorHashes(clazz);
/* 96 */ ConstructorPersistentReference ref = (ConstructorPersistentReference)hashes.get(hash);
/* 97 */ if (ref != null)
/* */ {
/* 99 */ return ref.getConstructor();
/* */ }
/* 101 */ if (clazz.getSuperclass() != null)
/* */ {
/* 103 */ return findConstructorByHash(clazz, hash);
/* */ }