Update of /cvsroot/springframework/spring/src/org/springframework/aop/support
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4919/src/org/springframework/aop/support
Modified Files:
DelegatePerTargetObjectIntroductionInterceptor.java
Log Message:
polishing
Index: DelegatePerTargetObjectIntroductionInterceptor.java
===================================================================
RCS file: /cvsroot/springframework/spring/src/org/springframework/aop/support/DelegatePerTargetObjectIntroductionInterceptor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** DelegatePerTargetObjectIntroductionInterceptor.java 29 Jan 2007 10:58:28 -0000 1.2
--- DelegatePerTargetObjectIntroductionInterceptor.java 27 Nov 2008 18:04:35 -0000 1.3
***************
*** 1,4 ****
/*
! * Copyright 2002-2007 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
--- 1,4 ----
/*
! * Copyright 2002-2008 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
***************
*** 57,61 ****
* Hold weak references to keys as we don't want to interfere with garbage collection..
*/
! private Map delegateMap = new WeakHashMap();
private Class defaultImplType;
--- 57,61 ----
* Hold weak references to keys as we don't want to interfere with garbage collection..
*/
! private final Map delegateMap = new WeakHashMap();
private Class defaultImplType;
|