/* 1319 */ return generator;
/* */ }
/* */
/* */ public ConstructorJoinPointGenerator getJoinPointGenerator(ConstructorInfo info)
/* */ {
/* 1326 */ ConstructorJoinPointGenerator generator = (ConstructorJoinPointGenerator)GeneratedClassAdvisor.this.constructionJoinPointGenerators.get(info.getJoinpoint());
/* 1327 */ if (generator == null)
/* */ {
/* 1329 */ generator = new ConstructorJoinPointGenerator(GeneratedClassAdvisor.this, info);
/* 1330 */ GeneratedClassAdvisor.this.initConstructionJoinPointGeneratorsMap();
/* 1331 */ ConstructorJoinPointGenerator existing = (ConstructorJoinPointGenerator)GeneratedClassAdvisor.this.constructionJoinPointGenerators.putIfAbsent(info.getJoinpoint(), generator);
/* 1332 */ if (existing != null)
/* */ {
/* 1334 */ generator = existing;
/* */ }
/* */ }