/* 249 */ int interceptorsRemoved = 0;
/* 250 */ if (this.insertedInterceptors != null)
/* */ {
/* 252 */ for (int i = 0; i < this.insertedInterceptors.size(); i++)
/* */ {
/* 254 */ GeneratedAdvisorInterceptor interceptor = (GeneratedAdvisorInterceptor)this.insertedInterceptors.get(i);
/* 255 */ if (!interceptor.getName().equals(name))
/* */ continue;
/* 257 */ ArrayList newList = new ArrayList();
/* 258 */ newList.addAll(this.insertedInterceptors);
/* 259 */ newList.remove(i);
/* 260 */ this.insertedInterceptors = newList;
/* 261 */ interceptorsRemoved++;
/* */ }
/* */ }
/* */
/* 265 */ if (this.appendedInterceptors != null)
/* */ {
/* 267 */ for (int i = 0; i < this.appendedInterceptors.size(); i++)
/* */ {
/* 269 */ GeneratedAdvisorInterceptor interceptor = (GeneratedAdvisorInterceptor)this.appendedInterceptors.get(i);
/* 270 */ if (!interceptor.getName().equals(name))
/* */ continue;
/* 272 */ ArrayList newList = new ArrayList();
/* 273 */ newList.addAll(this.appendedInterceptors);
/* 274 */ newList.remove(i);
/* 275 */ this.appendedInterceptors = newList;