File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/main/java/org/mybatis/caches/ehcache Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2929
3030 <groupId >org.mybatis.caches</groupId >
3131 <artifactId >mybatis-ehcache</artifactId >
32- <version >1.3.2 -SNAPSHOT</version >
32+ <version >2.0.0 -SNAPSHOT</version >
3333
3434 <name >mybatis-ehcache</name >
3535 <description >Ehcache support for MyBatis Cache</description >
6868 <module .name>org.mybatis.caches.ehcache</module .name>
6969
7070 <!-- Reproducible Builds -->
71- <project .build.outputTimestamp>1763919261 </project .build.outputTimestamp>
71+ <project .build.outputTimestamp>1773012811 </project .build.outputTimestamp>
7272
7373 <!-- External Modules -->
7474 <slf4j .version>2.0.17</slf4j .version>
Original file line number Diff line number Diff line change 2121import java .util .concurrent .locks .ReadWriteLock ;
2222
2323import org .apache .ibatis .cache .Cache ;
24+ import org .ehcache .Cache .Entry ;
2425import org .ehcache .PersistentCacheManager ;
2526import org .ehcache .config .builders .CacheConfigurationBuilder ;
2627import org .ehcache .config .builders .CacheManagerBuilder ;
@@ -157,7 +158,7 @@ public Object getObject(Object key) {
157158 @ Override
158159 public int getSize () {
159160 int count = 0 ;
160- for (org . ehcache . Cache . Entry <Object , Object > ignored : getOrCreateCache ()) {
161+ for (Entry <Object , Object > ignored : getOrCreateCache ()) {
161162 count ++;
162163 }
163164 return count ;
You can’t perform that action at this time.
0 commit comments